HomeSort by relevance Sort by last modified time
    Searched refs:GOTO (Results 76 - 100 of 148) sorted by null

1 2 34 5 6

  /dalvik/dx/src/com/android/dx/ssa/
LiteralOpUpgrader.java 169 RegOps.GOTO, null);
SsaMethod.java 218 * Gets a new {@code GOTO} insn.
220 * @param block block to which this GOTO will be added
226 new PlainInsn(Rops.GOTO, SourcePosition.NO_INFO,
232 * a single {@code GOTO}. Successors and predecessors are not yet
820 // Check to see if we need to add a GOTO
831 Insn gotoInsn = new PlainInsn(Rops.GOTO,
  /external/apache-commons-bcel/src/test/java/org/apache/bcel/generic/
GeneratingAnnotatedClassesTestCase.java 464 final GOTO g = new GOTO(null);
475 // "Normal" code continues, now we can set the branch target of the GOTO
558 final GOTO g = new GOTO(null);
569 // "Normal" code continues, now we can set the branch target of the GOTO
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/filter/
FinallyTest.java 63 * GOTO instructions at the end of duplicates of finally block might have
182 * This test studies placement of GOTO instructions.
203 if (Opcodes.GOTO == i.getOpcode()) {
  /external/mdnsresponder/mDNSWindows/Java/
makefile 82 @if not "%RC_XBS%"=="YES" GOTO CONT
  /dalvik/dx/src/com/android/dx/cf/code/
Ropper.java 873 * been made to instead end with a goto, and we need to
    [all...]
BasicBlocker.java 227 case ByteOps.GOTO: {
ByteOps.java 194 public static final int GOTO = 0xa7;
522 "a7 b goto;" +
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dops.java 225 public static final Dop GOTO =
226 new Dop(DalvOps.GOTO, DalvOps.GOTO,
227 Form10t.THE_ONE, false, "goto");
230 new Dop(DalvOps.GOTO_16, DalvOps.GOTO,
231 Form20t.THE_ONE, false, "goto/16");
234 new Dop(DalvOps.GOTO_32, DalvOps.GOTO,
235 Form30t.THE_ONE, false, "goto/32");
    [all...]
RopToDop.java 89 MAP.put(Rops.GOTO, Dops.GOTO);
DalvOps.java 74 public static final int GOTO = 0x28;
  /dalvik/dx/src/com/android/dx/dex/code/
Dops.java 228 public static final Dop GOTO =
229 new Dop(Opcodes.GOTO, Opcodes.GOTO,
233 new Dop(Opcodes.GOTO_16, Opcodes.GOTO,
237 new Dop(Opcodes.GOTO_32, Opcodes.GOTO,
    [all...]
OutputFinisher.java 762 * rewrites them to use a {@code goto} of some sort. In the
764 * test is reversed in order to branch around a {@code goto}
787 if (opcode.getFamily() == Opcodes.GOTO) {
788 // It is a goto; widen it if possible.
802 * it to branch around an absolute goto to the original
829 new TargetInsn(Dops.GOTO, target.getPosition(),
    [all...]
RopToDop.java 87 // Opcodes.GOTO
266 MAP.put(Rops.GOTO, Dops.GOTO);
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
InstructionFactory.java 744 case Const.GOTO:
745 return new GOTO(target);
Visitor.java 501 void visitGOTO( GOTO obj );
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/util/
CodeHTML.java 158 case Const.GOTO:
415 // Get target addresses from GOTO, JSR, TABLESWITCH, etc.
455 case Const.GOTO:
563 * Set an anchor mark if this line is targetted by a goto, jsr, etc. Defining an anchor for every
  /dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java 147 && (insns.get(0).getOpcode() == Rops.GOTO)) {
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
ScriptEditor.java 94 SAVE, SAVE_AND_RUN, PREFERENCES, API_BROWSER, HELP, SHARE, GOTO, SEARCH;
188 menu.add(0, MenuId.GOTO.getId(), 0, "GoTo").setIcon(android.R.drawable.ic_menu_directions);
227 } else if (item.getItemId() == MenuId.GOTO.getId()) {
319 b.setTitle("Goto Line");
  /dalvik/dx/src/com/android/dx/io/
OpcodeInfo.java 222 public static final Info GOTO =
223 new Info(Opcodes.GOTO, "goto",
227 new Info(Opcodes.GOTO_16, "goto/16",
231 new Info(Opcodes.GOTO_32, "goto/32",
    [all...]
  /art/compiler/optimizing/
scheduler_test.cc 426 Instruction::GOTO | 0xeb << 8, // goto 0004 // -0015
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
Rops.java 118 /** {@code goto label} */
119 public static final Rop GOTO =
120 new Rop(RegOps.GOTO, Type.VOID, StdTypeList.EMPTY, Rop.BRANCH_GOTO,
121 "goto");
123 /** {@code x: int :: if (x == 0) goto label} */
128 /** {@code x: int :: if (x != 0) goto label} */
133 /** {@code x: int :: if (x < 0) goto label} */
138 /** {@code x: int :: if (x >= 0) goto label} */
143 /** {@code x: int :: if (x <= 0) goto label} */
148 /** {@code x: int :: if (x > 0) goto label} *
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
Rops.java 119 /** {@code goto label} */
120 public static final Rop GOTO =
121 new Rop(RegOps.GOTO, Type.VOID, StdTypeList.EMPTY, Rop.BRANCH_GOTO,
122 "goto");
124 /** {@code x: int :: if (x == 0) goto label} */
129 /** {@code x: int :: if (x != 0) goto label} */
134 /** {@code x: int :: if (x < 0) goto label} */
139 /** {@code x: int :: if (x >= 0) goto label} */
144 /** {@code x: int :: if (x <= 0) goto label} */
149 /** {@code x: int :: if (x > 0) goto label} *
    [all...]
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/
Const.java     [all...]
Constants.java     [all...]

Completed in 2041 milliseconds

1 2 34 5 6