Searched refs:CONST (Results 1 - 10 of 10) sorted by relevance
/dalvik/tests/003-omnibus-opcodes/src/ |
H A D | InternedString.java | 20 public static final String CONST = "Class InternedString"; field in class:InternedString 33 s = CONST; 40 WeakReference strRef = new WeakReference<String>(CONST.intern()); 44 assert(CONST == CONST.intern()); 48 String s = CONST; 54 assert(strRef.get() == CONST);
|
/dalvik/dx/src/com/android/dx/rop/code/ |
H A D | RegOps.java | 50 public static final int CONST = 5; field in class:RegOps 318 case CONST: return "const";
|
H A D | Rops.java | 94 new Rop(RegOps.CONST, Type.INT, StdTypeList.EMPTY, "const-int"); 98 new Rop(RegOps.CONST, Type.LONG, StdTypeList.EMPTY, "const-long"); 102 new Rop(RegOps.CONST, Type.FLOAT, StdTypeList.EMPTY, "const-float"); 106 new Rop(RegOps.CONST, Type.DOUBLE, StdTypeList.EMPTY, "const-double"); 110 new Rop(RegOps.CONST, Type.OBJECT, StdTypeList.EMPTY, 115 new Rop(RegOps.CONST, Type.OBJECT, StdTypeList.EMPTY, 1129 case RegOps.CONST: return opConst(dest);
|
/dalvik/dx/src/com/android/dx/ssa/ |
H A D | NormalSsaInsn.java | 228 case RegOps.CONST:
|
H A D | EscapeAnalysis.java | 262 case RegOps.CONST: 547 RegOps.CONST, newZero); 615 next.getResult(), RegOps.CONST, 632 RegOps.CONST, constList.get(i));
|
H A D | SCCP.java | 345 case RegOps.CONST: {
|
/dalvik/dx/src/com/android/dx/dex/code/ |
H A D | Dops.java | 136 new Dop(DalvOps.CONST_4, DalvOps.CONST, 140 new Dop(DalvOps.CONST_16, DalvOps.CONST, 143 public static final Dop CONST = field in class:Dops 144 new Dop(DalvOps.CONST, DalvOps.CONST, 148 new Dop(DalvOps.CONST_HIGH16, DalvOps.CONST, 964 set(CONST);
|
H A D | DalvOps.java | 54 public static final int CONST = 0x14; field in class:DalvOps
|
H A D | RopToDop.java | 402 case RegOps.CONST: {
|
/dalvik/dx/src/com/android/dx/cf/code/ |
H A D | RopperMachine.java | 757 return RegOps.CONST;
|
Completed in 178 milliseconds