bugged
stringlengths
6
599k
fixed
stringlengths
6
40.8M
__index_level_0__
int64
0
3.24M
protected boolean nextArgsFile() { RubyArray args = (RubyArray)getRuntime().getGlobalVariables().get("$*"); if (args.getLength() == 0) { if (currentFile == null) { currentFile = (RubyIO) getRuntime().getGlobalVariables().get("$stdin"); ((RubyString) getRuntime...
protected boolean nextArgsFile() { RubyArray args = (RubyArray)getRuntime().getGlobalVariables().get("$*"); if (args.getLength() == 0) { if (currentFile == null) { currentFile = (RubyIO) getRuntime().getGlobalVariables().get("$stdin"); ((RubyString) getRuntime...
3,234,636
protected RubyModule(IRuby runtime, RubyClass metaClass, RubyClass superClass, RubyModule parentModule, String name) { super(runtime, metaClass); this.superClass = superClass; this.parentModule = parentModule; setBaseName(name); // If no parent is passed in, it is safe t...
protected RubyModule(IRuby runtime, RubyClass metaClass, RubyClass superClass, SinglyLinkedList parentCRef, String name) { super(runtime, metaClass); this.superClass = superClass; this.parentModule = parentModule; setBaseName(name); // If no parent is passed in, it is sa...
3,234,637
protected RubyModule(IRuby runtime, RubyClass metaClass, RubyClass superClass, RubyModule parentModule, String name) { super(runtime, metaClass); this.superClass = superClass; this.parentModule = parentModule; setBaseName(name); // If no parent is passed in, it is safe t...
protected RubyModule(IRuby runtime, RubyClass metaClass, RubyClass superClass, RubyModule parentModule, String name) { super(runtime, metaClass); this.superClass = superClass; this.parentModule = parentModule; setBaseName(name); // If no parent is passed in, it is safe t...
3,234,638
protected RubyModule(IRuby runtime, RubyClass metaClass, RubyClass superClass, RubyModule parentModule, String name) { super(runtime, metaClass); this.superClass = superClass; this.parentModule = parentModule; setBaseName(name); // If no parent is passed in, it is safe t...
protected RubyModule(IRuby runtime, RubyClass metaClass, RubyClass superClass, RubyModule parentModule, String name) { super(runtime, metaClass); this.superClass = superClass; this.parentModule = parentModule; setBaseName(name); // If no parent is passed in, it is safe t...
3,234,639
public RubyBoolean const_defined(IRubyObject symbol) { String name = symbol.asSymbol(); if (!IdUtil.isConstant(name)) { throw getRuntime().newNameError("wrong constant name " + name); } return getRuntime().newBoolean(getConstant(name, false) != null); }
public RubyBoolean const_defined(IRubyObject symbol) { String name = symbol.asSymbol(); if (!IdUtil.isConstant(name)) { throw getRuntime().newNameError("wrong constant name " + name); } return getRuntime().newBoolean(getConstantAt(name) != null); }
3,234,641
public RubyClass defineClassUnder(String name, RubyClass superClazz) { IRubyObject type = getConstantAt(name); if (type == null) { return (RubyClass) setConstant(name, getRuntime().defineClassUnder(name, superClazz, this)); } if (!(type instanceof RubyClass)) { th...
public RubyClass defineClassUnder(String name, RubyClass superClazz) { IRubyObject type = getConstantAt(name); if (type == null) { return (RubyClass) setConstant(name, getRuntime().defineClassUnder(name, superClazz, cref)); } if (!(type instanceof RubyClass)) { th...
3,234,642
public RubyModule defineModuleUnder(String name) { IRubyObject type = getConstantAt(name); if (type == null) { return (RubyModule) setConstant(name, getRuntime().defineModuleUnder(name, this)); } if (!(type instanceof RubyModule)) { throw getRunt...
public RubyModule defineModuleUnder(String name) { IRubyObject type = getConstantAt(name); if (type == null) { return (RubyModule) setConstant(name, getRuntime().defineModuleUnder(name, cref)); } if (!(type instanceof RubyModule)) { throw getRunt...
3,234,643
public RubyClass defineOrGetClassUnder(String name, RubyClass superClazz) { IRubyObject type = getConstantAt(name); if (type == null) { return (RubyClass) setConstant(name, getRuntime().defineClassUnder(name, superClazz, this)); } if (!(type instanceof R...
public RubyClass defineOrGetClassUnder(String name, RubyClass superClazz) { IRubyObject type = getConstantAt(name); if (type == null) { return (RubyClass) setConstant(name, getRuntime().defineClassUnder(name, superClazz, cref)); } if (!(type instanceof R...
3,234,644
protected IRubyObject doClone() { return RubyModule.newModule(getRuntime(), getBaseName(), parentModule); }
protected IRubyObject doClone() { return RubyModule.newModule(getRuntime(), getBaseName(), cref.getNext()); }
3,234,645
public RubyClass getClass(String name) { IRubyObject module = getConstant(name, false); return (module instanceof RubyClass) ? (RubyClass) module : null; }
public RubyClass getClass(String name) { IRubyObject module = getConstantAt(name); return (module instanceof RubyClass) ? (RubyClass) module : null; }
3,234,646
public IRubyObject getConstant(String name) { return getConstant(name, true); }
public IRubyObject getConstant(String name) { return getConstantInner(name, false); }
3,234,647
public IRubyObject getConstantAt(String name) { IRubyObject constant = getInstanceVariable(name); if (constant != null) { return constant; } if (this == getRuntime().getObject()) { return getConstant(name, false); } return null; }
public IRubyObject getConstantAt(String name) { IRubyObject constant = getInstanceVariable(name); if (constant != null) { return constant; } if (this == getRuntime().getObject()) { return getConstant(name, false); } return null; }
3,234,648
public RubyModule getParent() { return parentModule; }
public RubyModule getParent() { if (cref.getNext() == null) { return null; } return (RubyModule)cref.getNext().getValue(); }
3,234,649
public synchronized void includeModule(IRubyObject arg) { testFrozen("module"); if (!isTaint()) { getRuntime().secure(4); } if (!(arg instanceof RubyModule)) { throw getRuntime().newTypeError("Wrong argument type " + arg.getMetaClass().getName() + " (expected Module...
public synchronized void includeModule(IRubyObject arg) { testFrozen("module"); if (!isTaint()) { getRuntime().secure(4); } if (!(arg instanceof RubyModule)) { throw getRuntime().newTypeError("Wrong argument type " + arg.getMetaClass().getName() + " (expected Module...
3,234,650
public IncludedModuleWrapper newIncludeClass(RubyClass superClazz) { return new IncludedModuleWrapper(getRuntime(), superClazz, this); }
public IncludedModuleWrapper newIncludeClass(RubyClass superClazz) { IncludedModuleWrapper includedModule = new IncludedModuleWrapper(getRuntime(), superClazz, this); if (getSuperClass() != null) { includedModule.includeModule(getSuperClass()); } return includedModule; }
3,234,651
public void undef(String name) { IRuby runtime = getRuntime(); if (this == runtime.getObject()) { runtime.secure(4); } if (runtime.getSafeLevel() >= 4 && !isTaint()) { throw new SecurityException("Insecure: can't undef"); } testFrozen("module"); ...
public void undef(String name) { IRuby runtime = getRuntime(); if (this == runtime.getObject()) { runtime.secure(4); } if (runtime.getSafeLevel() >= 4 && !isTaint()) { throw new SecurityException("Insecure: can't undef"); } testFrozen("module"); ...
3,234,652
public void fireNotifyOnMessage(final ChatRoom chatRoom) { ChatRoom activeChatRoom = null; try { activeChatRoom = getActiveChatRoom(); } catch (ChatRoomNotFoundException e1) { Log.error(e1); } if (chatFrame.isVisible() && (chatFrame.getState() == Frame...
public void fireNotifyOnMessage(final ChatRoom chatRoom) { ChatRoom activeChatRoom = null; try { activeChatRoom = getActiveChatRoom(); } catch (ChatRoomNotFoundException e1) { Log.error(e1); } if (chatFrame.isVisible() && (chatFrame.getState() == Frame...
3,234,655
void setDefaultZT(int t, int z, int sizeT, int sizeZ) { ToolBarManager tbm = toolBar.getManager(); tbm.onTChange(t); tbm.onZChange(z); int maxZ = sizeZ-1; int maxT = sizeT-1; tbm.setMaxT(maxT); tbm.setMaxZ(maxZ); toolBar.getZLabel().setText("/"+maxZ); ...
void setDefaultZT(int t, int z, int sizeT, int sizeZ) { ToolBarManager tbm = toolBar.getManager(); tbm.onTChange(t); tbm.onZChange(z); int maxZ = sizeZ-1; int maxT = sizeT-1; tbm.setMaxT(maxT); tbm.setMaxZ(maxZ); toolBar.getZLabel().setText("/"+maxZ); ...
3,234,656
void setDefaultZT(int t, int z, int sizeT, int sizeZ) { ToolBarManager tbm = toolBar.getManager(); tbm.onTChange(t); tbm.onZChange(z); int maxZ = sizeZ-1; int maxT = sizeT-1; tbm.setMaxT(maxT); tbm.setMaxZ(maxZ); toolBar.getZLabel().setText("/"+maxZ); ...
void setDefaultZT(int t, int z, int sizeT, int sizeZ) { ToolBarManager tbm = toolBar.getManager(); tbm.onTChange(t); tbm.onZChange(z); int maxZ = sizeZ-1; int maxT = sizeT-1; tbm.setMaxT(maxT); tbm.setMaxZ(maxZ); toolBar.getZLabel().setText("/"+maxZ); ...
3,234,657
public RubyArray coerce(IRubyObject num) { RubyNumeric other = numericValue(num); if (getMetaClass() == other.getMetaClass()) { return RubyArray.newArray(getRuntime(), other, this); } else { return RubyArray.newArray( getRuntime(), RubyFloat.n...
public RubyArray coerce(IRubyObject num) { RubyNumeric other = numericValue(num); if (getMetaClass() == other.getMetaClass()) { return RubyArray.newArray(getRuntime(), other, this); } else { return RubyArray.newArray( getRuntime(), RubyFloat.n...
3,234,658
public RubyArray coerce(IRubyObject num) { RubyNumeric other = numericValue(num); if (getMetaClass() == other.getMetaClass()) { return RubyArray.newArray(getRuntime(), other, this); } else { return RubyArray.newArray( getRuntime(), RubyFloat.n...
public RubyArray coerce(IRubyObject num) { RubyNumeric other = numericValue(num); if (getMetaClass() == other.getMetaClass()) { return RubyArray.newArray(getRuntime(), other, this); } else { return RubyArray.newArray( getRuntime(), RubyFloat.n...
3,234,659
public RubyArray coerce(IRubyObject num) { RubyNumeric other = numericValue(num); if (getMetaClass() == other.getMetaClass()) { return RubyArray.newArray(getRuntime(), other, this); } else { return RubyArray.newArray( getRuntime(), RubyFloat.n...
public RubyArray coerce(IRubyObject num) { RubyNumeric other = numericValue(num); if (getMetaClass() == other.getMetaClass()) { return RubyArray.newArray(getRuntime(), other, this); else { return RubyArray.newArray( getRuntime(), RubyFloat.new...
3,234,660
public static RubyClass createNumericClass(Ruby ruby) { return new NumericDefinition(ruby).getType(); }
public static RubyClass createNumericClass(Ruby ruby) { RubyClass result = ruby.defineClass("Numeric", ruby.getClasses().getObjectClass()); CallbackFactory callbackFactory = ruby.callbackFactory(); result.includeModule(ruby.getClasses().getComparableModule()); result.defineMethod("+@", callbackFactory.getM...
3,234,661
public RubyArray divmod(IRubyObject val) { RubyNumeric other = numericValue(val); RubyNumeric div = (RubyNumeric) callMethod("/", other); if (div instanceof RubyFloat) { double d = Math.floor(((RubyFloat) div).getValue()); if (((RubyFloat) div).getValue() > d) { ...
public RubyArray divmod(IRubyObject val) { RubyNumeric other = numericValue(val); RubyNumeric div = (RubyNumeric) callMethod("/", other); if (div instanceof RubyFloat) { double d = Math.floor(((RubyFloat) div).getValue()); if (((RubyFloat) div).getValue() > d) { ...
3,234,662
public RubyArray divmod(IRubyObject val) { RubyNumeric other = numericValue(val); RubyNumeric div = (RubyNumeric) callMethod("/", other); if (div instanceof RubyFloat) { double d = Math.floor(((RubyFloat) div).getValue()); if (((RubyFloat) div).getValue() > d) { ...
public RubyArray divmod(IRubyObject val) { RubyNumeric other = numericValue(val); RubyNumeric div = (RubyNumeric) callMethod("/", other); if (div instanceof RubyFloat) { double d = Math.floor(((RubyFloat) div).getValue()); if (((RubyFloat) div).getValue() > d) { ...
3,234,663
public RubyArray divmod(IRubyObject val) { RubyNumeric other = numericValue(val); RubyNumeric div = (RubyNumeric) callMethod("/", other); if (div instanceof RubyFloat) { double d = Math.floor(((RubyFloat) div).getValue()); if (((RubyFloat) div).getValue() > d) { ...
public RubyArray divmod(IRubyObject val) { RubyNumeric other = numericValue(val); RubyNumeric div = (RubyNumeric) callMethod("/", other); if (div instanceof RubyFloat) { double d = Math.floor(((RubyFloat) div).getValue()); if (((RubyFloat) div).getValue() > d) { ...
3,234,664
public RubyBoolean eql(IRubyObject other) { if (getMetaClass() != other.getMetaClass()) { return getRuntime().getFalse(); } else { return super.equal(other); // +++ rb_equal } }
public RubyBoolean eql(IRubyObject other) { if (getMetaClass() != other.getMetaClass()) { return getRuntime().getFalse(); } else { return super.equal(other); // +++ rb_equal } }
3,234,665
public RubyNumeric modulo(IRubyObject val) { RubyNumeric other = numericValue(val); return (RubyNumeric) callMethod("%", other); }
public RubyNumeric modulo(IRubyObject val) { RubyNumeric other = numericValue(val); return (RubyNumeric) callMethod("%", other); }
3,234,668
public RubyNumeric remainder(IRubyObject val) { RubyNumeric other = numericValue(val); RubyNumeric mod = (RubyNumeric) callMethod("%", other); final RubyNumeric zero = RubyFixnum.zero(getRuntime()); if (callMethod("<", zero).isTrue() && other.callMethod(">", zero).isTrue() || cal...
public RubyNumeric remainder(IRubyObject val) { RubyNumeric other = numericValue(val); RubyNumeric mod = (RubyNumeric) callMethod("%", other); final RubyNumeric zero = RubyFixnum.zero(getRuntime()); if (callMethod("<", zero).isTrue() && other.callMethod(">", zero).isTrue() || cal...
3,234,669
public RubyNumeric remainder(IRubyObject val) { RubyNumeric other = numericValue(val); RubyNumeric mod = (RubyNumeric) callMethod("%", other); final RubyNumeric zero = RubyFixnum.zero(getRuntime()); if (callMethod("<", zero).isTrue() && other.callMethod(">", zero).isTrue() || cal...
public RubyNumeric remainder(IRubyObject val) { RubyNumeric other = numericValue(val); RubyNumeric mod = (RubyNumeric) callMethod("%", other); final RubyNumeric zero = RubyFixnum.zero(getRuntime()); if (callMethod("<", zero).isTrue() && other.callMethod(">", zero).isTrue() || cal...
3,234,670
public void passivationNotAllowed() { throw new InternalException( "Passivation should have been disabled for all Stateful Session Beans.\n" + "Please contact the Omero development team for how to ensure that passivation\n" + "is disabled on your application server."); }
protected void passivationNotAllowed() { throw new InternalException( "Passivation should have been disabled for all Stateful Session Beans.\n" + "Please contact the Omero development team for how to ensure that passivation\n" + "is disabled on your application server."); }
3,234,671
public void passivationNotAllowed() { throw new InternalException( "Passivation should have been disabled for all Stateful Session Beans.\n" + "Please contact the Omero development team for how to ensure that passivation\n" + "is disabled on your application server."); }
public void passivationNotAllowed() { throw new InternalException( "Passivation should have been disabled for all Stateful Session Beans.\n" + "Please contact the Omero development team for how to ensure that passivation\n" + "is disabled on your application server."); }
3,234,672
public void passivationNotAllowed() { throw new InternalException( "Passivation should have been disabled for all Stateful Session Beans.\n" + "Please contact the Omero development team for how to ensure that passivation\n" + "is disabled on your application server."); }
public void passivationNotAllowed() { throw new InternalException( "Passivation should have been disabled for all Stateful Session Beans.\n" + "Please contact the Omero development team for how to ensure that passivation\n" + "is disabled on your application server.",this.getClass().get...
3,234,673
StatusBar(Icon statusIcon) { initComponents(statusIcon); buildUI(); }
StatusBar(TreeViewerControl controller) { initComponents(statusIcon); buildUI(); }
3,234,674
StatusBar(Icon statusIcon) { initComponents(statusIcon); buildUI(); }
StatusBar(Icon statusIcon) { if (controller == null) throw new IllegalArgumentException("No control."); this.controller = controller; initComponents(); buildUI(); }
3,234,675
private void initComponents(Icon statusIcon) { progressBar = new JProgressBar(); progressBar.setIndeterminate(true); status = new JLabel(); statusButton = new JButton(statusIcon); statusButton.setBorder(null); statusButton.setBorderPainted(false); statusButton.add...
private void initComponents() { progressBar = new JProgressBar(); progressBar.setIndeterminate(true); status = new JLabel(); statusButton = new JButton(statusIcon); statusButton.setBorder(null); statusButton.setBorderPainted(false); statusButton.addActionListener(...
3,234,676
private void initComponents(Icon statusIcon) { progressBar = new JProgressBar(); progressBar.setIndeterminate(true); status = new JLabel(); statusButton = new JButton(statusIcon); statusButton.setBorder(null); statusButton.setBorderPainted(false); statusButton.add...
private void initComponents(Icon statusIcon) { progressBar = new JProgressBar(); progressBar.setIndeterminate(true); status = new JLabel(); statusButton = new JButton(icons.getIcon(IconManager.STATUS_INFO)); statusButton.setBorder(null); statusButton.setBorderPainted(fal...
3,234,677
private void initComponents(Icon statusIcon) { progressBar = new JProgressBar(); progressBar.setIndeterminate(true); status = new JLabel(); statusButton = new JButton(statusIcon); statusButton.setBorder(null); statusButton.setBorderPainted(false); statusButton.add...
private void initComponents(Icon statusIcon) { progressBar = new JProgressBar(); progressBar.setIndeterminate(true); status = new JLabel(); statusButton = new JButton(statusIcon); statusButton.setBorder(null); statusButton.setBorderPainted(false); statusButton.add...
3,234,678
public void actionPerformed(ActionEvent e) { if (buttonEnabled) firePropertyChange(CANCEL_PROPERTY, Boolean.FALSE, Boolean.TRUE); }
public void actionPerformed(ActionEvent e) { if (buttonEnabled) firePropertyChange(CANCEL_PROPERTY, Boolean.FALSE, Boolean.TRUE); }
3,234,679
private void bringUpPresentation() { presentation.setDrawOnOff(drawOnOff); presentation.deIconify(); }
private void bringUpPresentation() { presentation.deIconify(); }
3,234,681
private Workspace() { MainWindow mainWindow = SparkManager.getMainWindow(); // Add MainWindow listener mainWindow.addMainWindowListener(new MainWindowListener() { public void shutdown() { // Close all Chats. final Iterator chatRooms = SparkManager.getCha...
private Workspace() { MainWindow mainWindow = SparkManager.getMainWindow(); // Add MainWindow listener mainWindow.addMainWindowListener(new MainWindowListener() { public void shutdown() { // Close all Chats. final Iterator chatRooms = SparkManager.getCha...
3,234,682
protected RubyObject getConstant(Ruby ruby, RubyObject self, CRefNode cref, String id) { CRefNode cbase = cref; // HACK +++ if (ruby.getClasses().getClassMap().get(id) != null) { return (RubyObject)ruby.getClasses().getClassMap().get(id); } // HACK --- ...
protected RubyObject getConstant(Ruby ruby, RubyObject self, CRefNode cref, String id) { CRefNode cbase = cref; // HACK +++ if (ruby.getClasses().getClassMap().get(id) != null) { return (RubyObject)ruby.getClasses().getClassMap().get(id); } // HACK --- ...
3,234,685
private void loadImages() { int selectedIndex = view.bar.selections.getSelectedIndex(); if (selectedIndex != index) { index = selectedIndex; Object[] images = null; switch (selectedIndex) { case ImagesPaneBar.IMAGES_IMPORTED: images = age...
private void loadImages() { int selectedIndex = view.bar.selections.getSelectedIndex(); if (selectedIndex != index) { index = selectedIndex; List images = null; switch (selectedIndex) { case ImagesPaneBar.IMAGES_IMPORTED: images = agentCt...
3,234,689
private void loadImages() { int selectedIndex = view.bar.selections.getSelectedIndex(); if (selectedIndex != index) { index = selectedIndex; Object[] images = null; switch (selectedIndex) { case ImagesPaneBar.IMAGES_IMPORTED: images = age...
private void loadImages() { int selectedIndex = view.bar.selections.getSelectedIndex(); if (selectedIndex != index) { index = selectedIndex; Object[] images = null; switch (selectedIndex) { case ImagesPaneBar.IMAGES_IMPORTED: images = age...
3,234,690
private void loadImages() { int selectedIndex = view.bar.selections.getSelectedIndex(); if (selectedIndex != index) { index = selectedIndex; Object[] images = null; switch (selectedIndex) { case ImagesPaneBar.IMAGES_IMPORTED: images = age...
private void loadImages() { int selectedIndex = view.bar.selections.getSelectedIndex(); if (selectedIndex != index) { index = selectedIndex; Object[] images = null; switch (selectedIndex) { case ImagesPaneBar.IMAGES_IMPORTED: images = age...
3,234,691
private void loadImages() { int selectedIndex = view.bar.selections.getSelectedIndex(); if (selectedIndex != index) { index = selectedIndex; Object[] images = null; switch (selectedIndex) { case ImagesPaneBar.IMAGES_IMPORTED: images = age...
private void loadImages() { int selectedIndex = view.bar.selections.getSelectedIndex(); if (selectedIndex != index) { index = selectedIndex; Object[] images = null; switch (selectedIndex) { case ImagesPaneBar.IMAGES_IMPORTED: images = age...
3,234,692
private void loadImages() { int selectedIndex = view.bar.selections.getSelectedIndex(); if (selectedIndex != index) { index = selectedIndex; Object[] images = null; switch (selectedIndex) { case ImagesPaneBar.IMAGES_IMPORTED: images = age...
private void loadImages() { int selectedIndex = view.bar.selections.getSelectedIndex(); if (selectedIndex != index) { index = selectedIndex; Object[] images = null; switch (selectedIndex) { case ImagesPaneBar.IMAGES_IMPORTED: images = age...
3,234,693
public void initialize() { // Listen for right-clicks on ContactItem final ContactList contactList = SparkManager.getWorkspace().getContactList(); final Action listenAction = new AbstractAction() { public void actionPerformed(ActionEvent e) { ContactItem item = (Contac...
public void initialize() { // Listen for right-clicks on ContactItem final ContactList contactList = SparkManager.getWorkspace().getContactList(); final Action listenAction = new AbstractAction() { public void actionPerformed(ActionEvent e) { ContactItem item = (Contac...
3,234,695
public void initialize() { // Listen for right-clicks on ContactItem final ContactList contactList = SparkManager.getWorkspace().getContactList(); final Action listenAction = new AbstractAction() { public void actionPerformed(ActionEvent e) { ContactItem item = (Contac...
public void initialize() { // Listen for right-clicks on ContactItem final ContactList contactList = SparkManager.getWorkspace().getContactList(); final Action listenAction = new AbstractAction() { public void actionPerformed(ActionEvent e) { ContactItem item = (Contac...
3,234,696
public void initialize() { // Listen for right-clicks on ContactItem final ContactList contactList = SparkManager.getWorkspace().getContactList(); final Action listenAction = new AbstractAction() { public void actionPerformed(ActionEvent e) { ContactItem item = (Contac...
public void initialize() { // Listen for right-clicks on ContactItem final ContactList contactList = SparkManager.getWorkspace().getContactList(); final Action listenAction = new AbstractAction() { public void actionPerformed(ActionEvent e) { ContactItem item = (Contac...
3,234,697
public void processPacket(Packet packet) { Presence presence = (Presence)packet; if (presence == null || (presence.getMode() != Presence.Mode.available && presence.getMode() != Presence.Mode.chat)) { return; } String from = prese...
public void processPacket(Packet packet) { Presence presence = (Presence)packet; if (presence == null || (presence.getMode() != Presence.Mode.available && presence.getMode() != Presence.Mode.chat)) { return; } String from = prese...
3,234,698
protected static Class getCanonicalJavaClass(Class type) { // Replace wrapper classes with the primitive class that each // represents. if (type == Double.class) return Double.TYPE; if (type == Float.class) return Float.TYPE; if (type == Integer.class) ...
protected static Class getCanonicalJavaClass(Class type) { // Replace wrapper classes with the primitive class that each // represents. if (type == Double.class) return Double.TYPE; if (type == Float.class) return Float.TYPE; if (type == Integer.class) ...
3,234,699
public void test_modificationIncrements() throws Exception { long original = session.lastModification(); session.register( new Project() ); long updated = session.lastModification(); assertTrue("Registering didn't update lastModification", original < updated); }
public void test_modificationIncrements() throws Exception { long original = session.lastModification(); session.register( new Project() ); long updated = session.lastModification(); assertTrue("Registering didn't update lastModification", original <= updated); }
3,234,700
public void testEvalThrowsMethod() throws Exception { assertStringTemplateThrows ("$set $foo=$TestObject.throwException()", org.webmacro.PropertyException.class); }
public void testEvalThrowsMethod() throws Exception { assertStringTemplateThrows ("#set $foo=$TestObject.throwException()", org.webmacro.PropertyException.class); }
3,234,701
private void createTrees() { treeDisplay = new JTree(); treeDisplay.setVisible(true); ToolTipManager.sharedInstance().registerComponent(treeDisplay); treeDisplay.setCellRenderer(new TreeCellRenderer()); treeDisplay.setShowsRootHandles(true); treeDisplay.putClientProperty...
private void createTrees() { treeDisplay = new JTree(); treeDisplay.setVisible(true); ToolTipManager.sharedInstance().registerComponent(treeDisplay); treeDisplay.setCellRenderer(new TreeCellRenderer()); treeDisplay.setShowsRootHandles(true); treeDisplay.getSelect...
3,234,702
public void actionPerformed(ActionEvent e) { String s = (String) e.getActionCommand(); try { int index = Integer.parseInt(s); switch (index) { case V_VISIBLE: abstraction.showPresentation(); break; case CONTROL: showControls(); break; case SAVE_AS: showImageSaver(); break...
public void actionPerformed(ActionEvent e) { String s = (String) e.getActionCommand(); try { int index = Integer.parseInt(s); switch (index) { case V_VISIBLE: abstraction.showPresentation(); break; case CONTROL: showControls(); break; case SAVE_AS: showImageSaver(); break...
3,234,703
Entry(Object key, Object value){ this.key = key; this.value = value; }
Entry(Object key, Object value){ this.key = key; this.value = value; }
3,234,704
public String toString(){ return "("+key+":"+value+")"; }
public String toString(){ return "("+key+":"+value+")"; }
3,234,705
public boolean enter(Object o) { push(o); //log.info("Context In:"+(LinkedList)context.get()); return true; }
publicbooleanenter(Objecto){ push(o); //log.info("ContextIn:"+(LinkedList)context.get()); returntrue; }
3,234,706
public boolean exit(Object o) { pop(o); //log.info("Context Out:"+(LinkedList)context.get()); return true; }
publicbooleanexit(Objecto){ pop(o); //log.info("ContextOut:"+(LinkedList)context.get()); returntrue; }
3,234,707
protected boolean hasntSeen(Object o) { if (cache.get()==null)newCache(); return ! ((Set) cache.get()).contains(o); }
protected boolean hasntSeen(Object o) { if (cache.get()==null)newCache(); return ! ((Set) cache.get()).contains(o); }
3,234,708
protected void pop(Object o){ if (context.get()==null) newContext(); LinkedList l = (LinkedList) context.get(); Object last = l.removeLast(); if (o != last){ throw new IllegalStateException("Context is invalid. Trying to remove Object "+o+" and removed Object "+last); } }
protected void pop(Object o){ if (context.get()==null) newContext(); LinkedList l = (LinkedList) context.get(); Object last = l.removeLast(); if (o != last){ throw new IllegalStateException("Context is invalid. Trying to remove Object "+o+" and removed Object "+last); } }
3,234,709
protected void pop(Object o){ if (context.get()==null) newContext(); LinkedList l = (LinkedList) context.get(); Object last = l.removeLast(); if (o != last){ throw new IllegalStateException("Context is invalid. Trying to remove Object "+o+" and removed Object "+last); } }
protected void pop(Object o){ if (context.get()==null) newContext(); LinkedList l = (LinkedList) context.get(); Object last = l.removeLast(); if (o != last){ throw new IllegalStateException("Context is invalid. Trying to remove Object "+o+" and removed Object "+last); } }
3,234,710
public Object previousContext(int index) { if (context.get() == null) return null; LinkedList ll = (LinkedList) context.get(); if (index < 0 || index >= ll.size()) return null; return ll.get(ll.size() - index - 1); }
public Object previousContext(int index) { if (context.get() == null) return null; LinkedList ll = (LinkedList) context.get(); if (index < 0 || index >= ll.size()) return null; return ll.get(ll.size() - index - 1); }
3,234,711
protected void push(Object o){ if (context.get()==null) newContext(); LinkedList l = (LinkedList) context.get(); l.addLast(o); }
protected void push(Object o){ if (context.get()==null) newContext(); LinkedList l = (LinkedList) context.get(); l.addLast(o); }
3,234,712
public static RubyModule loadClass(Ruby ruby, Class javaClass, String rubyName) { RubyModule newRubyClass = getRubyClass(ruby, javaClass); if (newRubyClass != null) { return newRubyClass; } if (rubyName == null) { String javaName = javaClass.getName(); ru...
public static RubyModule loadClass(Ruby ruby, Class javaClass, String rubyName) { RubyModule newRubyClass = getRubyClass(ruby, javaClass); if (newRubyClass != null) { return newRubyClass; } if (rubyName == null) { String javaName = javaClass.getName(); ru...
3,234,713
public void copy(IObject model, ModelMapper mapper) { if (model instanceof Image) { Image i = (Image) model; super.copy(model,mapper); // Details if (i.getDetails() != null){ Details d = i.getDetails(); this.setCreated(mapper.event2tim...
public void copy(IObject model, ModelMapper mapper) { if (model instanceof Image) { Image i = (Image) model; super.copy(model,mapper); // Details if (i.getDetails() != null){ Details d = i.getDetails(); this.setCreated(mapper.event2tim...
3,234,714
public Object call(Object recv, String method, Object[] args) throws BSFException { RubyObject rubyRecv = JavaUtil.convertJavaToRuby(ruby, recv, recv.getClass()); RubyObject[] rubyArgs = new RubyObject[args.length]; for (int i = args.length; i >= 0; i--) { rubyArgs[i] = JavaUtil.conv...
public Object call(Object recv, String method, Object[] args) throws BSFException { try { RubyObject rubyRecv = JavaUtil.convertJavaToRuby(ruby, recv, recv.getClass()); RubyObject[] rubyArgs = new RubyObject[args.length]; for (int i = args.length; i >= 0; i--) { rubyArgs[i] = JavaUti...
3,234,715
public Object call(Object recv, String method, Object[] args) throws BSFException { RubyObject rubyRecv = JavaUtil.convertJavaToRuby(ruby, recv, recv.getClass()); RubyObject[] rubyArgs = new RubyObject[args.length]; for (int i = args.length; i >= 0; i--) { rubyArgs[i] = JavaUtil.conv...
public Object call(Object recv, String method, Object[] args) throws BSFException { RubyObject rubyRecv = JavaUtil.convertJavaToRuby(ruby, recv, recv.getClass()); RubyObject[] rubyArgs = new RubyObject[args.length]; for (int i = args.length; i >= 0; i--) { rubyArgs[i] = JavaUtil.conv...
3,234,716
public Object call(Object recv, String method, Object[] args) throws BSFException { RubyObject rubyRecv = JavaUtil.convertJavaToRuby(ruby, recv, recv.getClass()); RubyObject[] rubyArgs = new RubyObject[args.length]; for (int i = args.length; i >= 0; i--) { rubyArgs[i] = JavaUtil.conv...
public Object call(Object recv, String method, Object[] args) throws BSFException { RubyObject rubyRecv = JavaUtil.convertJavaToRuby(ruby, recv, recv.getClass()); RubyObject[] rubyArgs = new RubyObject[args.length]; for (int i = args.length; i >= 0; i--) { rubyArgs[i] = JavaUtil.conv...
3,234,717
public Object eval(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); Object result = ruby.evalScript((String) expr, Object.class); ...
public Object eval(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); try { Object result = ruby.evalScript((String) expr, Object.class); ...
3,234,718
public Object eval(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); Object result = ruby.evalScript((String) expr, Object.class); ...
public Object eval(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); Object result = ruby.evalScript((String) expr, Object.class); ...
3,234,719
public Object eval(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); Object result = ruby.evalScript((String) expr, Object.class); ...
public Object eval(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); Object result = ruby.evalScript((String) expr, Object.class); ...
3,234,720
public void exec(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); ruby.evalScript((String) expr, Object.class); ruby.setSourceFil...
public void exec(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); ruby.evalScript((String) expr, Object.class); ruby.setSourceFil...
3,234,721
public void exec(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); ruby.evalScript((String) expr, Object.class); ruby.setSourceFil...
public void exec(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); ruby.evalScript((String) expr, Object.class); ruby.setSourceFil...
3,234,722
public void exec(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); ruby.evalScript((String) expr, Object.class); ruby.setSourceFil...
public void exec(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); ruby.evalScript((String) expr, Object.class); ruby.setSourceFil...
3,234,723
public void exec(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); ruby.evalScript((String) expr, Object.class); ruby.setSourceFil...
public void exec(String file, int line, int col, Object expr) throws BSFException { String oldFile = ruby.getSourceFile(); int oldLine = ruby.getSourceLine(); ruby.setSourceFile(file); ruby.setSourceLine(line); ruby.evalScript((String) expr, Object.class); ruby.setSourceFil...
3,234,724
public void initialize(BSFManager mgr, String lang, Vector declaredBeans) throws BSFException { super.initialize(mgr, lang, declaredBeans); ruby = Ruby.getDefaultInstance(org.jruby.regexp.GNURegexpAdapter.class); int size = declaredBeans.size(); for (int i = 0; i < size; i++) { ...
public void initialize(BSFManager mgr, String lang, Vector declaredBeans) throws BSFException { super.initialize(mgr, lang, declaredBeans); ruby = Ruby.getDefaultInstance(org.jruby.regexp.GNURegexpAdapter.class); int size = declaredBeans.size(); for (int i = 0; i < size; i++) { ...
3,234,725
public void initialize(BSFManager mgr, String lang, Vector declaredBeans) throws BSFException { super.initialize(mgr, lang, declaredBeans); ruby = Ruby.getDefaultInstance(org.jruby.regexp.GNURegexpAdapter.class); int size = declaredBeans.size(); for (int i = 0; i < size; i++) { ...
public void initialize(BSFManager mgr, String lang, Vector declaredBeans) throws BSFException { super.initialize(mgr, lang, declaredBeans); ruby = Ruby.getDefaultInstance(org.jruby.regexp.GNURegexpAdapter.class); int size = declaredBeans.size(); for (int i = 0; i < size; i++) { ...
3,234,726
public RubyObject eval(Ruby ruby, RubyObject self) { throw new BreakException(); }
public RubyObject eval(Ruby ruby, RubyObject self) { throw new BreakJump(); }
3,234,727
public void initCoreClasses() { RubyClass metaClass; objectClass = defineBootClass("Object", null); moduleClass = defineBootClass("Module", objectClass); classClass = defineBootClass("Class", moduleClass); metaClass = classClass.newSingletonClass(); objectCl...
public void initCoreClasses() { RubyClass metaClass; objectClass = defineBootClass("Object", null); moduleClass = defineBootClass("Module", objectClass); classClass = defineBootClass("Class", moduleClass); metaClass = classClass.newSingletonClass(); objectCl...
3,234,728
protected void enableFilters(Session session) { ownerOrGroupFilters(session, // TODO this needs to be moved to Hierarchy. new String[]{ CategoryGroup.OWNER_FILTER, CategoryGroup.OWNER_FILTER_CATEGORYLINKS, Category.OWNER_FILTER, Category....
protected void enableFilters(Session session) { ownerOrGroupFilters(session, // TODO this needs to be moved to Hierarchy. new String[]{ CategoryGroup.OWNER_FILTER, CategoryGroup.OWNER_FILTER_CATEGORYLINKS, Category.OWNER_FILTER, Category....
3,234,729
protected void enableFilters(Session session) { ownerOrGroupFilters(session, // TODO this needs to be moved to Hierarchy. new String[]{ CategoryGroup.OWNER_FILTER, CategoryGroup.OWNER_FILTER_CATEGORYLINKS, Category.OWNER_FILTER, Category....
protected void enableFilters(Session session) { ownerOrGroupFilters(session, // TODO this needs to be moved to Hierarchy. new String[]{ CategoryGroup.OWNER_FILTER, CategoryGroup.OWNER_FILTER_CATEGORYLINKS, Category.OWNER_FILTER, Category....
3,234,730
public Ruby() { initOperatorTable(); originalMethods = new RubyOriginalMethods(this); globalMap = new RubyHashMap(); nilObject = new RubyNil(this); trueObject = new RubyBoolean(this, true); falseObject = new RubyBoolean(this, false); c...
public Ruby() { initOperatorTable(); originalMethods = new RubyOriginalMethods(this); globalMap = new RubyHashMap(); nilObject = new RubyNil(this); trueObject = new RubyBoolean(this, true); falseObject = new RubyBoolean(this, false); c...
3,234,731
public org.jruby.interpreter.RubyScope getRubyScope() { return rubyScope; }
public RubyScope getRubyScope() { return rubyScope; }
3,234,732
public void setRubyScope(org.jruby.interpreter.RubyScope rubyScope) { this.rubyScope = rubyScope; }
public void setRubyScope(RubyScope rubyScope) { this.rubyScope = rubyScope; }
3,234,733
public void visitMultipleAsgnNode(MultipleAsgnNode iVisited) { // Make sure value is an array. if (value == null) { value = RubyArray.newArray(ruby, 0); } else if (!(value instanceof RubyArray)) { RubyObject newValue = value.convertToType("Array", "to_ary", false); ...
public void visitMultipleAsgnNode(MultipleAsgnNode iVisited) { // Make sure value is an array. if (value == null) { value = RubyArray.newArray(ruby, 0); } else if (!(value instanceof RubyArray)) { RubyObject newValue = value.convertToType("Array", "to_ary", false); ...
3,234,734
public static void pop(Ruby ruby) { ruby.setDynamicVars((RubyVarmap)((RubyStack)oldMap.get(ruby)).pop()); }
public static void pop(Ruby ruby) { ruby.setDynamicVars((RubyVarmap)ruby.varMapStack.pop()); }
3,234,735
public static void push(Ruby ruby) { // HACK +++ if (oldMap.get(ruby) == null) { oldMap.put(ruby, new RubyStack()); // throw new RuntimeException("JRuby - BUG: Need Queue for oldMap in RubyVarmap"); } // HACK --- ((RubyStack)oldMap.get(ruby)).push(rub...
public static void push(Ruby ruby) { // HACK +++ if (oldMap.get(ruby) == null) { oldMap.put(ruby, new RubyStack()); // throw new RuntimeException("JRuby - BUG: Need Queue for oldMap in RubyVarmap"); } // HACK --- ((RubyStack)oldMap.get(ruby)).push(rub...
3,234,736
private final void ReInitRounds(){ int i; jjround = 0x80000001; for (i = 48; i-- > 0;) jjrounds[i] = 0x80000000;}
private final void ReInitRounds(){ int i; jjround = 0x80000001; for (i = 53; i-- > 0;) jjrounds[i] = 0x80000000;}
3,234,737
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 53; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
3,234,738
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
3,234,739
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
3,234,740
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
3,234,741
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
3,234,742
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
3,234,743
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
3,234,744
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
3,234,745
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
3,234,746
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
private final int jjMoveNfa_0(int startState, int curPos){ int[] nextStates; int startsAt = 0; jjnewStateCnt = 48; int i = 1; jjstateSet[0] = startState; int j, kind = 0x7fffffff; for (;;) { if (++jjround == 0x7fffffff) ReInitRounds(); if (curChar < 64) { long l = 1L << cu...
3,234,747