Tabnine Logo
IF_ICMPLT.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.apache.bcel.generic.IF_ICMPLT
constructor

Best Java code snippets using org.apache.bcel.generic.IF_ICMPLT.<init> (Showing top 19 results out of 315)

origin: xalan/xalan

public BranchInstruction LT(boolean tozero) {
return tozero ? (BranchInstruction) new IFLT(null) : 
  (BranchInstruction) new IF_ICMPLT(null);
}
origin: xalan/xalan

public BranchInstruction LT(boolean tozero) {
return tozero ? (BranchInstruction) new IFLT(null) : 
  (BranchInstruction) new IF_ICMPLT(null);
}
origin: bcel/bcel

/**
 * @return negation of instruction
 */
public IfInstruction negate() {
 return new IF_ICMPLT(target);
}
origin: xalan/xalan

iter.setEnd(il.append(new IF_ICMPLT(next)));
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

public BranchInstruction LT(boolean tozero) {
return tozero ? (BranchInstruction) new IFLT(null) : 
  (BranchInstruction) new IF_ICMPLT(null);
}
origin: org.apache.bcel/bcel

/**
 * @return negation of instruction
 */
@Override
public IfInstruction negate() {
  return new IF_ICMPLT(super.getTarget());
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

public BranchInstruction LT(boolean tozero) {
return tozero ? (BranchInstruction) new IFLT(null) : 
  (BranchInstruction) new IF_ICMPLT(null);
}
origin: dragome/dragome-sdk

@SuppressWarnings("unused")
// Called using reflection
private Instruction createInstructionIf_icmplt(Element inst)
{
  int id= Integer.parseInt(inst.getAttributeValue("label"));
  BranchInstruction bi= new IF_ICMPLT(null);
  instructionHandlerManager.registerBranchInstruction(bi, id);
  return bi;
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

public BranchInstruction LT(boolean tozero) {
return tozero ? (BranchInstruction) new IFLT(null) : 
  (BranchInstruction) new IF_ICMPLT(null);
}
origin: org.apache.xalan/com.springsource.org.apache.xalan

public BranchInstruction LT(boolean tozero) {
return tozero ? (BranchInstruction) new IFLT(null) : 
  (BranchInstruction) new IF_ICMPLT(null);
}
origin: org.apache.xalan/com.springsource.org.apache.xalan

public BranchInstruction LT(boolean tozero) {
return tozero ? (BranchInstruction) new IFLT(null) : 
  (BranchInstruction) new IF_ICMPLT(null);
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

public BranchInstruction LT(boolean tozero) {
return tozero ? (BranchInstruction) new IFLT(null) : 
  (BranchInstruction) new IF_ICMPLT(null);
}
origin: bcel/bcel

/** Create branch instruction by given opcode, except LOOKUPSWITCH and TABLESWITCH.
 * For those you should use the SWITCH compound instruction.
 */
public static BranchInstruction createBranchInstruction(short opcode, InstructionHandle target) {
 switch(opcode) {
 case Constants.IFEQ:      return new IFEQ(target);
 case Constants.IFNE:      return new IFNE(target);
 case Constants.IFLT:      return new IFLT(target);
 case Constants.IFGE:      return new IFGE(target);
 case Constants.IFGT:      return new IFGT(target);
 case Constants.IFLE:      return new IFLE(target);
 case Constants.IF_ICMPEQ: return new IF_ICMPEQ(target);
 case Constants.IF_ICMPNE: return new IF_ICMPNE(target);
 case Constants.IF_ICMPLT: return new IF_ICMPLT(target);
 case Constants.IF_ICMPGE: return new IF_ICMPGE(target);
 case Constants.IF_ICMPGT: return new IF_ICMPGT(target);
 case Constants.IF_ICMPLE: return new IF_ICMPLE(target);
 case Constants.IF_ACMPEQ: return new IF_ACMPEQ(target);
 case Constants.IF_ACMPNE: return new IF_ACMPNE(target);
 case Constants.GOTO:      return new GOTO(target);
 case Constants.JSR:       return new JSR(target);
 case Constants.IFNULL:    return new IFNULL(target);
 case Constants.IFNONNULL: return new IFNONNULL(target);
 case Constants.GOTO_W:    return new GOTO_W(target);
 case Constants.JSR_W:     return new JSR_W(target);
 default:
 throw new RuntimeException("Invalid opcode: " + opcode);
 }
}
origin: org.apache.bcel/bcel

  return new IF_ICMPNE(target);
case Const.IF_ICMPLT:
  return new IF_ICMPLT(target);
case Const.IF_ICMPGE:
  return new IF_ICMPGE(target);
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

iter.setEnd(il.append(new IF_ICMPLT(next)));
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

iter.setEnd(il.append(new IF_ICMPLT(next)));
origin: org.apache.xalan/com.springsource.org.apache.xalan

iter.setEnd(il.append(new IF_ICMPLT(next)));
origin: org.apache.bcel/bcel

  break;
case Const.IF_ICMPLT:
  obj = new IF_ICMPLT();
  break;
case Const.IF_ICMPGE:
origin: rohanpadhye/jqf

  break;
case Const.IF_ICMPLT:
  ins = new IF_ICMPLT(generateLabel(r, code));
  break;
case Const.IF_ICMPGE:
org.apache.bcel.genericIF_ICMPLT<init>

Javadoc

Empty constructor needed for Instruction.readInstruction. Not to be used otherwise.

Popular methods of IF_ICMPLT

    Popular in Java

    • Updating database using SQL prepared statement
    • requestLocationUpdates (LocationManager)
    • setScale (BigDecimal)
    • addToBackStack (FragmentTransaction)
    • DateFormat (java.text)
      Formats or parses dates and times.This class provides factories for obtaining instances configured f
    • TreeSet (java.util)
      TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
    • UUID (java.util)
      UUID is an immutable representation of a 128-bit universally unique identifier (UUID). There are mul
    • Manifest (java.util.jar)
      The Manifest class is used to obtain attribute information for a JarFile and its entries.
    • BasicDataSource (org.apache.commons.dbcp)
      Basic implementation of javax.sql.DataSource that is configured via JavaBeans properties. This is no
    • IOUtils (org.apache.commons.io)
      General IO stream manipulation utilities. This class provides static utility methods for input/outpu
    • Best IntelliJ plugins
    Tabnine Logo
    • Products

      Search for Java codeSearch for JavaScript code
    • IDE Plugins

      IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
    • Company

      About UsContact UsCareers
    • Resources

      FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
    Get Tabnine for your IDE now