Searched refs:make (Results 1 - 25 of 72) sorted by path

123

/dalvik/
H A DAndroid.mk32 # DONT_INSTALL_DEX_FILES is already false, so a normal make takes care of it.
56 # so a normal make takes care of it.
/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DDalvCode.java109 positions = PositionList.make(insns, positionInfo);
110 locals = LocalList.make(insns);
H A DDalvInsn.java73 RegisterSpecList.make(dest, src));
H A DHighRegisterPrefix.java144 RegisterSpec.make(destIndex, src.getType()),
H A DLocalList.java326 public static LocalList make(DalvInsnList insns) { method in class:LocalList
H A DPositionList.java31 * constant for {@link #make} to indicate that no actual position
37 * constant for {@link #make} to indicate that only line number
43 * constant for {@link #make} to indicate that only "important" position
58 public static PositionList make(DalvInsnList insns, int howMuch) { method in class:PositionList
H A DRopTranslator.java475 regs = RegisterSpecList.make(regs.get(1), regs.get(0));
593 RegisterSpec.make(regCount - paramSize + param,
596 RegisterSpecList.make(dest, source));
/dalvik/dexgen/src/com/android/dexgen/dex/code/form/
H A DForm35c.java183 RegisterSpec.make(one.getReg() + 1, Type.VOID));
H A DForm45cc.java183 RegisterSpec.make(one.getReg() + 1, Type.VOID));
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DAnnotationUtils.java142 CstInteger.make(accessFlags)));
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DExceptions.java64 public static final StdTypeList LIST_Error = StdTypeList.make(TYPE_Error);
71 StdTypeList.make(TYPE_Error, TYPE_ArithmeticException);
78 StdTypeList.make(TYPE_Error, TYPE_ClassCastException);
85 StdTypeList.make(TYPE_Error, TYPE_NegativeArraySizeException);
92 StdTypeList.make(TYPE_Error, TYPE_NullPointerException);
100 StdTypeList.make(TYPE_Error,
111 StdTypeList.make(TYPE_Error,
123 StdTypeList.make(TYPE_Error,
H A DLocalItem.java40 public static LocalItem make(CstUtf8 name, CstUtf8 signature) { method in class:LocalItem
H A DPlainInsn.java67 this(opcode, position, result, RegisterSpecList.make(source));
H A DRegisterSpec.java85 public static RegisterSpec make(int reg, TypeBearer type) { method in class:RegisterSpec
100 public static RegisterSpec make(int reg, TypeBearer type, method in class:RegisterSpec
139 * {@link #make}.
466 return (resultLocal == null) ? make(reg, resultTypeBearer) :
467 make(reg, resultTypeBearer, resultLocal);
H A DRegisterSpecList.java37 public static RegisterSpecList make(RegisterSpec spec) { method in class:RegisterSpecList
50 public static RegisterSpecList make(RegisterSpec spec0, method in class:RegisterSpecList
66 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
84 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
H A DRops.java1748 return throwBadTypes(StdTypeList.make(dest.getType(),
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstBoolean.java39 public static CstBoolean make(boolean value) { method in class:CstBoolean
50 public static CstBoolean make(int value) { method in class:CstBoolean
61 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstByte.java28 public static final CstByte VALUE_0 = make((byte) 0);
36 public static CstByte make(byte value) { method in class:CstByte
48 public static CstByte make(int value) { method in class:CstByte
56 return make(cast);
60 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstChar.java28 public static final CstChar VALUE_0 = make((char) 0);
36 public static CstChar make(char value) { method in class:CstChar
48 public static CstChar make(int value) { method in class:CstChar
56 return make(cast);
60 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstDouble.java41 public static CstDouble make(long bits) { method in class:CstDouble
50 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstFloat.java28 public static final CstFloat VALUE_0 = make(Float.floatToIntBits(0.0f));
31 public static final CstFloat VALUE_1 = make(Float.floatToIntBits(1.0f));
34 public static final CstFloat VALUE_2 = make(Float.floatToIntBits(2.0f));
42 public static CstFloat make(int bits) { method in class:CstFloat
51 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstInteger.java31 public static final CstInteger VALUE_M1 = make(-1);
34 public static final CstInteger VALUE_0 = make(0);
37 public static final CstInteger VALUE_1 = make(1);
40 public static final CstInteger VALUE_2 = make(2);
43 public static final CstInteger VALUE_3 = make(3);
46 public static final CstInteger VALUE_4 = make(4);
49 public static final CstInteger VALUE_5 = make(5);
58 public static CstInteger make(int value) { method in class:CstInteger
60 * Note: No need to synchronize, since we don't make any sort
77 * Constructs an instance. This constructor is private; use {@link #make}
[all...]
H A DCstLong.java28 public static final CstLong VALUE_0 = make(0);
31 public static final CstLong VALUE_1 = make(1);
39 public static CstLong make(long value) { method in class:CstLong
48 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstShort.java28 public static final CstShort VALUE_0 = make((short) 0);
37 public static CstShort make(short value) { method in class:CstShort
49 public static CstShort make(int value) { method in class:CstShort
57 return make(cast);
61 * Constructs an instance. This constructor is private; use {@link #make}.
/dalvik/dexgen/src/com/android/dexgen/rop/type/
H A DStdTypeList.java30 public static final StdTypeList INT = StdTypeList.make(Type.INT);
33 public static final StdTypeList LONG = StdTypeList.make(Type.LONG);
36 public static final StdTypeList FLOAT = StdTypeList.make(Type.FLOAT);
39 public static final StdTypeList DOUBLE = StdTypeList.make(Type.DOUBLE);
42 public static final StdTypeList OBJECT = StdTypeList.make(Type.OBJECT);
46 = StdTypeList.make(Type.RETURN_ADDRESS);
50 StdTypeList.make(Type.THROWABLE);
54 StdTypeList.make(Type.INT, Type.INT);
58 StdTypeList.make(Type.LONG, Type.LONG);
62 StdTypeList.make(Typ
170 public static StdTypeList make(Type type) { method in class:StdTypeList
183 public static StdTypeList make(Type type0, Type type1) { method in class:StdTypeList
198 public static StdTypeList make(Type type0, Type type1, Type type2) { method in class:StdTypeList
215 public static StdTypeList make(Type type0, Type type1, Type type2, method in class:StdTypeList
[all...]

Completed in 230 milliseconds

123