Searched defs:make (Results 1 - 25 of 29) sorted by relevance

12

/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 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}.
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...]
/dalvik/dx/src/com/android/dx/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 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}.
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...]
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DLocalItem.java40 public static LocalItem make(CstUtf8 name, CstUtf8 signature) { method in class:LocalItem
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 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);
/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalItem.java40 public static LocalItem make(CstString name, CstString signature) { method in class:LocalItem
H A DRegisterSpecList.java38 public static RegisterSpecList make(RegisterSpec spec) { method in class:RegisterSpecList
51 public static RegisterSpecList make(RegisterSpec spec0, method in class:RegisterSpecList
67 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
85 public static RegisterSpecList make(RegisterSpec spec0, RegisterSpec spec1, method in class:RegisterSpecList
/dalvik/dexgen/src/com/android/dexgen/dex/code/
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
/dalvik/dx/src/com/android/dx/dex/code/
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
/dalvik/dx/src/com/android/dx/ssa/
H A DDominators.java86 public static Dominators make(SsaMethod meth, DomFront.DomInfo[] domInfos, method in class:Dominators
/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 312 milliseconds

12