Searched defs:make (Results 1 - 25 of 33) 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 DCstCallSite.java35 public static CstCallSite make(CstMethodHandle bootstrapHandle, CstNat nat, method in class:CstCallSite
H A DCstProtoRef.java39 public static CstProtoRef make(CstString descriptor) { method in class:CstProtoRef
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 DCstInvokeDynamic.java55 public static CstInvokeDynamic make(int bootstrapMethodIndex, CstNat nat) { method in class:CstInvokeDynamic
60 * Constructs an instance. This constructor is private; use {@link #make}.
H A DCstMethodHandle.java55 public static CstMethodHandle make(int type, Constant ref) { method in class:CstMethodHandle
71 * Constructs an instance. This constructor is private; use {@link #make}.
/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
/dalvik/dx/src/com/android/dx/rop/code/
H A DLocalItem.java40 public static LocalItem make(CstString name, CstString signature) { method in class:LocalItem
/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

Completed in 1753 milliseconds

12