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

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

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

origin: xalan/xalan

  public BranchInstruction LE(boolean tozero) {
  return tozero ? (BranchInstruction) new IFLE(null) : 
    (BranchInstruction) new IF_ICMPLE(null);
  }
}
origin: xalan/xalan

  public BranchInstruction LE(boolean tozero) {
  return tozero ? (BranchInstruction) new IFLE(null) : 
    (BranchInstruction) new IF_ICMPLE(null);
  }
}
origin: bcel/bcel

/**
 * @return negation of instruction
 */
public IfInstruction negate() {
 return new IF_ICMPLE(target);
}
origin: dragome/dragome-sdk

@SuppressWarnings("unused")
// Called using reflection
private Instruction createInstructionIf_icmple(Element inst)
{
  int id= Integer.parseInt(inst.getAttributeValue("label"));
  BranchInstruction bi= new IF_ICMPLE(null);
  instructionHandlerManager.registerBranchInstruction(bi, id);
  return bi;
}
origin: org.apache.xalan/com.springsource.org.apache.xalan

  public BranchInstruction LE(boolean tozero) {
  return tozero ? (BranchInstruction) new IFLE(null) : 
    (BranchInstruction) new IF_ICMPLE(null);
  }
}
origin: org.apache.bcel/bcel

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

  public BranchInstruction LE(boolean tozero) {
  return tozero ? (BranchInstruction) new IFLE(null) : 
    (BranchInstruction) new IF_ICMPLE(null);
  }
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

  public BranchInstruction LE(boolean tozero) {
  return tozero ? (BranchInstruction) new IFLE(null) : 
    (BranchInstruction) new IF_ICMPLE(null);
  }
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

  public BranchInstruction LE(boolean tozero) {
  return tozero ? (BranchInstruction) new IFLE(null) : 
    (BranchInstruction) new IF_ICMPLE(null);
  }
}
origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

  public BranchInstruction LE(boolean tozero) {
  return tozero ? (BranchInstruction) new IFLE(null) : 
    (BranchInstruction) new IF_ICMPLE(null);
  }
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

  public BranchInstruction LE(boolean tozero) {
  return tozero ? (BranchInstruction) new IFLE(null) : 
    (BranchInstruction) new IF_ICMPLE(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_ICMPGT(target);
case Const.IF_ICMPLE:
  return new IF_ICMPLE(target);
case Const.IF_ACMPEQ:
  return new IF_ACMPEQ(target);
origin: org.apache.bcel/bcel

  break;
case Const.IF_ICMPLE:
  obj = new IF_ICMPLE();
  break;
case Const.IF_ACMPEQ:
origin: rohanpadhye/jqf

  break;
case Const.IF_ICMPLE:
  ins = new IF_ICMPLE(generateLabel(r, code));
  break;
case Const.IF_ACMPEQ:
org.apache.bcel.genericIF_ICMPLE<init>

Javadoc

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

Popular methods of IF_ICMPLE

    Popular in Java

    • Reading from database using SQL prepared statement
    • findViewById (Activity)
    • orElseThrow (Optional)
      Return the contained value, if present, otherwise throw an exception to be created by the provided s
    • onRequestPermissionsResult (Fragment)
    • GridLayout (java.awt)
      The GridLayout class is a layout manager that lays out a container's components in a rectangular gri
    • PrintStream (java.io)
      Fake signature of an existing Java class.
    • Runnable (java.lang)
      Represents a command that can be executed. Often used to run code in a different Thread.
    • Charset (java.nio.charset)
      A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
    • TreeSet (java.util)
      TreeSet is an implementation of SortedSet. All optional operations (adding and removing) are support
    • Project (org.apache.tools.ant)
      Central representation of an Ant project. This class defines an Ant project with all of its targets,
    • CodeWhisperer alternatives
    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