HomeSort by relevance Sort by last modified time
    Searched refs:THE_ONE (Results 1 - 25 of 115) sorted by null

1 2 3 4 5

  /dalvik/dexgen/src/com/android/dexgen/dex/code/
Dops.java 60 SpecialFormat.THE_ONE, false, "<special>");
65 Form10x.THE_ONE, false, "nop");
69 Form12x.THE_ONE, true, "move");
73 Form22x.THE_ONE, true, "move/from16");
77 Form32x.THE_ONE, true, "move/16");
81 Form12x.THE_ONE, true, "move-wide");
85 Form22x.THE_ONE, true, "move-wide/from16");
89 Form32x.THE_ONE, true, "move-wide/16");
93 Form12x.THE_ONE, true, "move-object");
97 Form22x.THE_ONE, true, "move-object/from16")
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
Dops.java 66 Opcodes.NO_NEXT, SpecialFormat.THE_ONE, false);
71 Opcodes.NO_NEXT, Form10x.THE_ONE, false);
75 Opcodes.MOVE_FROM16, Form12x.THE_ONE, true);
79 Opcodes.MOVE_16, Form22x.THE_ONE, true);
83 Opcodes.NO_NEXT, Form32x.THE_ONE, true);
87 Opcodes.MOVE_WIDE_FROM16, Form12x.THE_ONE, true);
91 Opcodes.MOVE_WIDE_16, Form22x.THE_ONE, true);
95 Opcodes.NO_NEXT, Form32x.THE_ONE, true);
99 Opcodes.MOVE_OBJECT_FROM16, Form12x.THE_ONE, true);
103 Opcodes.MOVE_OBJECT_16, Form22x.THE_ONE, true)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
Dops.java 63 Opcodes.NO_NEXT, SpecialFormat.THE_ONE, false);
68 Opcodes.NO_NEXT, Form10x.THE_ONE, false);
72 Opcodes.MOVE_FROM16, Form12x.THE_ONE, true);
76 Opcodes.MOVE_16, Form22x.THE_ONE, true);
80 Opcodes.NO_NEXT, Form32x.THE_ONE, true);
84 Opcodes.MOVE_WIDE_FROM16, Form12x.THE_ONE, true);
88 Opcodes.MOVE_WIDE_16, Form22x.THE_ONE, true);
92 Opcodes.NO_NEXT, Form32x.THE_ONE, true);
96 Opcodes.MOVE_OBJECT_FROM16, Form12x.THE_ONE, true);
100 Opcodes.MOVE_OBJECT_16, Form22x.THE_ONE, true)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
ConservativeTranslationAdvice.java 26 public static final ConservativeTranslationAdvice THE_ONE =
30 * This class is not publicly instantiable. Use {@link #THE_ONE}.
  /dalvik/dx/src/com/android/dx/rop/code/
ConservativeTranslationAdvice.java 26 public static final ConservativeTranslationAdvice THE_ONE =
30 * This class is not publicly instantiable. Use {@link #THE_ONE}.
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
ConservativeTranslationAdvice.java 26 public static final ConservativeTranslationAdvice THE_ONE =
30 * This class is not publicly instantiable. Use {@link #THE_ONE}.
  /libcore/libart/src/main/java/dalvik/system/
VMRuntime.java 31 private static final VMRuntime THE_ONE = new VMRuntime();
46 return THE_ONE;
  /libcore/libdvm/src/main/java/dalvik/system/
VMRuntime.java 31 private static final VMRuntime THE_ONE = new VMRuntime();
46 return THE_ONE;
  /dalvik/dexgen/src/com/android/dexgen/rop/cst/
CstKnownNull.java 26 public static final CstKnownNull THE_ONE = new CstKnownNull();
30 * {@link #THE_ONE}.
Zeroes.java 48 case Type.BT_OBJECT: return CstKnownNull.THE_ONE;
  /dalvik/dx/src/com/android/dx/dex/code/form/
SpecialFormat.java 33 public static final InsnFormat THE_ONE = new SpecialFormat();
37 * instantiable. Use {@link #THE_ONE}.
Form10x.java 30 public static final InsnFormat THE_ONE = new Form10x();
34 * instantiable. Use {@link #THE_ONE}.
Form30t.java 30 public static final InsnFormat THE_ONE = new Form30t();
34 * instantiable. Use {@link #THE_ONE}.
  /dalvik/dx/src/com/android/dx/rop/cst/
CstKnownNull.java 26 public static final CstKnownNull THE_ONE = new CstKnownNull();
30 * {@link #THE_ONE}.
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/form/
SpecialFormat.java 33 public static final InsnFormat THE_ONE = new SpecialFormat();
37 * instantiable. Use {@link #THE_ONE}.
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
CstKnownNull.java 26 public static final CstKnownNull THE_ONE = new CstKnownNull();
30 * {@link #THE_ONE}.
  /dalvik/dexgen/src/com/android/dexgen/dex/code/form/
Form10t.java 30 public static final InsnFormat THE_ONE = new Form10t();
34 * instantiable. Use {@link #THE_ONE}.
82 return Form20t.THE_ONE;
Form20t.java 30 public static final InsnFormat THE_ONE = new Form20t();
34 * instantiable. Use {@link #THE_ONE}.
82 return Form30t.THE_ONE;
Form21t.java 31 public static final InsnFormat THE_ONE = new Form21t();
35 * instantiable. Use {@link #THE_ONE}.
87 return Form31t.THE_ONE;
Form22x.java 31 public static final InsnFormat THE_ONE = new Form22x();
35 * instantiable. Use {@link #THE_ONE}.
75 return Form23x.THE_ONE;
Form23x.java 31 public static final InsnFormat THE_ONE = new Form23x();
35 * instantiable. Use {@link #THE_ONE}.
77 return Form32x.THE_ONE;
Form10x.java 30 public static final InsnFormat THE_ONE = new Form10x();
34 * instantiable. Use {@link #THE_ONE}.
SpecialFormat.java 34 public static final InsnFormat THE_ONE = new SpecialFormat();
38 * instantiable. Use {@link #THE_ONE}.
  /libcore/libart/src/main/java/sun/misc/
Unsafe.java 31 private static final Unsafe THE_ONE = new Unsafe();
33 private static final Unsafe theUnsafe = THE_ONE;
54 return THE_ONE;
  /libcore/libdvm/src/main/java/sun/misc/
Unsafe.java 31 private static final Unsafe THE_ONE = new Unsafe();
33 private static final Unsafe theUnsafe = THE_ONE;
54 return THE_ONE;

Completed in 606 milliseconds

1 2 3 4 5