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

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

Best Java code snippets using org.apache.bcel.generic.IFLT.<init> (Showing top 20 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: xalan/xalan

/**
 * Translates a node-set into a non-synthesized boolean. It does not 
 * push a 0 or a 1 but instead returns branchhandle list to be appended 
 * to the false list.
 *
 * @see    org.apache.xalan.xsltc.compiler.util.Type#translateToDesynthesized
 */
public FlowList translateToDesynthesized(ClassGenerator classGen, 
           MethodGenerator methodGen, 
           BooleanType type) {
final InstructionList il = methodGen.getInstructionList();
getFirstNode(classGen, methodGen);
return new FlowList(il.append(new IFLT(null)));
}
origin: xalan/xalan

  /**
   * Compile expression and update true/false-lists
   */
  public void translateDesynthesized(ClassGenerator classGen,
            MethodGenerator methodGen) {
  final ConstantPoolGen cpg = classGen.getConstantPool();
  final InstructionList il = methodGen.getInstructionList();
  _base.translate(classGen, methodGen);
  _token.translate(classGen, methodGen);
  il.append(new INVOKEVIRTUAL(cpg.addMethodref(STRING_CLASS,
               "indexOf",
               "("+STRING_SIG+")I")));
  _falseList.add(il.append(new IFLT(null)));
  }
}
origin: xalan/xalan

/**
 * Translates a node-set into a string. The string value of a node-set is
 * value of its first element.
 *
 * @see    org.apache.xalan.xsltc.compiler.util.Type#translateTo
 */
public void translateTo(ClassGenerator classGen, MethodGenerator methodGen, 
      StringType type) {
final InstructionList il = methodGen.getInstructionList();
getFirstNode(classGen, methodGen);
il.append(DUP);
final BranchHandle falsec = il.append(new IFLT(null));
Type.Node.translateTo(classGen, methodGen, type);
final BranchHandle truec = il.append(new GOTO(null));
falsec.setTarget(il.append(POP));
il.append(new PUSH(classGen.getConstantPool(), ""));
truec.setTarget(il.append(NOP));
}
origin: xalan/xalan

  final BranchHandle ifeq = ilLoop.append(new IFLT(null));
final BranchHandle loop = ilLoop.append(new GOTO_W(null));
origin: xalan/xalan

_falseList.add(il.append(new IFLT(null)));
il.append(loadLocal);
origin: bcel/bcel

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

il.append(DUP);
il.append(new ISTORE(node2.getIndex()));
_falseList.add(il.append(new IFLT(null)));	// NodeIterator.END
origin: org.apache.bcel/bcel

/**
 * @return negation of instruction
 */
@Override
public IfInstruction negate() {
  return new IFLT(super.getTarget());
}
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.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.servicemix.bundles/org.apache.servicemix.bundles.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.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: org.apache.servicemix.bundles/org.apache.servicemix.bundles.xalan

/**
 * Translates a node-set into a non-synthesized boolean. It does not 
 * push a 0 or a 1 but instead returns branchhandle list to be appended 
 * to the false list.
 *
 * @see    org.apache.xalan.xsltc.compiler.util.Type#translateToDesynthesized
 */
public FlowList translateToDesynthesized(ClassGenerator classGen, 
           MethodGenerator methodGen, 
           BooleanType type) {
final InstructionList il = methodGen.getInstructionList();
getFirstNode(classGen, methodGen);
return new FlowList(il.append(new IFLT(null)));
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

/**
 * Translates a node-set into a non-synthesized boolean. It does not 
 * push a 0 or a 1 but instead returns branchhandle list to be appended 
 * to the false list.
 *
 * @see    org.apache.xalan.xsltc.compiler.util.Type#translateToDesynthesized
 */
public FlowList translateToDesynthesized(ClassGenerator classGen, 
           MethodGenerator methodGen, 
           BooleanType type) {
final InstructionList il = methodGen.getInstructionList();
getFirstNode(classGen, methodGen);
return new FlowList(il.append(new IFLT(null)));
}
origin: org.apache.xalan/com.springsource.org.apache.xalan

/**
 * Translates a node-set into a non-synthesized boolean. It does not 
 * push a 0 or a 1 but instead returns branchhandle list to be appended 
 * to the false list.
 *
 * @see    org.apache.xalan.xsltc.compiler.util.Type#translateToDesynthesized
 */
public FlowList translateToDesynthesized(ClassGenerator classGen, 
           MethodGenerator methodGen, 
           BooleanType type) {
final InstructionList il = methodGen.getInstructionList();
getFirstNode(classGen, methodGen);
return new FlowList(il.append(new IFLT(null)));
}
origin: org.apache.karaf.bundles/org.apache.karaf.bundles.xalan-2.7.1

  /**
   * Compile expression and update true/false-lists
   */
  public void translateDesynthesized(ClassGenerator classGen,
            MethodGenerator methodGen) {
  final ConstantPoolGen cpg = classGen.getConstantPool();
  final InstructionList il = methodGen.getInstructionList();
  _base.translate(classGen, methodGen);
  _token.translate(classGen, methodGen);
  il.append(new INVOKEVIRTUAL(cpg.addMethodref(STRING_CLASS,
               "indexOf",
               "("+STRING_SIG+")I")));
  _falseList.add(il.append(new IFLT(null)));
  }
}
org.apache.bcel.genericIFLT<init>

Javadoc

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

Popular methods of IFLT

    Popular in Java

    • Running tasks concurrently on multiple threads
    • setContentView (Activity)
    • startActivity (Activity)
    • onCreateOptionsMenu (Activity)
    • Pointer (com.sun.jna)
      An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
    • Charset (java.nio.charset)
      A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
    • Connection (java.sql)
      A connection represents a link from a Java application to a database. All SQL statements and results
    • NoSuchElementException (java.util)
      Thrown when trying to retrieve an element past the end of an Enumeration or Iterator.
    • SortedMap (java.util)
      A map that has its keys ordered. The sorting is according to either the natural ordering of its keys
    • Executors (java.util.concurrent)
      Factory and utility methods for Executor, ExecutorService, ScheduledExecutorService, ThreadFactory,
    • Top 12 Jupyter Notebook extensions
    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