Searched refs:value (Results 1 - 25 of 102) sorted by relevance

12345

/dalvik/dexgen/src/com/android/dexgen/util/
H A DLeb128Utils.java32 * given value.
34 * @param value the value in question
37 public static int unsignedLeb128Size(int value) { argument
40 int remaining = value >> 7;
53 * given value.
55 * @param value the value in question
58 public static int signedLeb128Size(int value) { argument
61 int remaining = value >>
[all...]
H A DIntSet.java27 * @param value int to add
29 void add(int value); argument
34 * @param value int to remove
36 void remove(int value); argument
39 * Checks to see if a value is in the set
41 * @param value int to check
44 boolean has(int value); argument
H A DOutput.java34 * Asserts that the cursor is the given value.
36 * @param expectedCursor the expected cursor value
45 * @param value the value to write; all but the low 8 bits are ignored
47 public void writeByte(int value); argument
52 * @param value the value to write; all but the low 16 bits are ignored
54 public void writeShort(int value); argument
59 * @param value the value t
61 writeInt(int value) argument
68 writeLong(long value) argument
78 writeUnsignedLeb128(int value) argument
88 writeSignedLeb128(int value) argument
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DIntSet.java27 * @param value int to add
29 void add(int value); argument
34 * @param value int to remove
36 void remove(int value); argument
39 * Checks to see if a value is in the set
41 * @param value int to check
44 boolean has(int value); argument
H A DOutput.java36 * Asserts that the cursor is the given value.
38 * @param expectedCursor the expected cursor value
47 * @param value the value to write; all but the low 8 bits are ignored
49 public void writeByte(int value); argument
54 * @param value the value to write; all but the low 16 bits are ignored
56 public void writeShort(int value); argument
61 * @param value the value t
63 writeInt(int value) argument
70 writeLong(long value) argument
80 writeUleb128(int value) argument
90 writeSleb128(int value) argument
[all...]
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttAnnotationDefault.java28 /** {@code non-null;} the annotation default value */
29 private final Constant value; field in class:AttAnnotationDefault
38 * @param value {@code non-null;} the annotation default value
42 public AttAnnotationDefault(Constant value, int byteLength) { argument
45 if (value == null) {
46 throw new NullPointerException("value == null");
49 this.value = value;
60 * Gets the annotation default value
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DCstBoolean.java33 * Makes an instance for the given value. This will return an
36 * @param value the {@code boolean} value
39 public static CstBoolean make(boolean value) { argument
40 return value ? VALUE_TRUE : VALUE_FALSE;
44 * Makes an instance for the given {@code int} value. This
47 * @param value must be either {@code 0} or {@code 1}
50 public static CstBoolean make(int value) { argument
51 if (value == 0) {
53 } else if (value
65 CstBoolean(boolean value) argument
[all...]
H A DCstByte.java27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
34 * @param value the {@code byte} value
36 public static CstByte make(byte value) { argument
37 return new CstByte(value);
41 * Makes an instance for the given {@code int} value. This
45 * @param value the value, which must be in range for a {@code byte}
48 public static CstByte make(int value) { argument
64 CstByte(byte value) argument
[all...]
H A DCstChar.java27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
34 * @param value the {@code char} value
36 public static CstChar make(char value) { argument
37 return new CstChar(value);
41 * Makes an instance for the given {@code int} value. This
45 * @param value the value, which must be in range for a {@code char}
48 public static CstChar make(int value) { argument
64 CstChar(char value) argument
[all...]
H A DCstShort.java27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
34 * @param value the {@code short} value
37 public static CstShort make(short value) { argument
38 return new CstShort(value);
42 * Makes an instance for the given {@code int} value. This
46 * @param value the value, which must be in range for a {@code short}
49 public static CstShort make(int value) { argument
65 CstShort(short value) argument
[all...]
H A DCstLong.java34 * Makes an instance for the given value. This may (but does not
37 * @param value the {@code long} value
39 public static CstLong make(long value) { argument
44 return new CstLong(value);
50 * @param value the {@code long} value
52 private CstLong(long value) { argument
53 super(value);
59 long value
[all...]
/dalvik/dx/src/com/android/dx/rop/cst/
H A DCstBoolean.java33 * Makes an instance for the given value. This will return an
36 * @param value the {@code boolean} value
39 public static CstBoolean make(boolean value) { argument
40 return value ? VALUE_TRUE : VALUE_FALSE;
44 * Makes an instance for the given {@code int} value. This
47 * @param value must be either {@code 0} or {@code 1}
50 public static CstBoolean make(int value) { argument
51 if (value == 0) {
53 } else if (value
65 CstBoolean(boolean value) argument
[all...]
H A DCstByte.java27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
34 * @param value the {@code byte} value
36 public static CstByte make(byte value) { argument
37 return new CstByte(value);
41 * Makes an instance for the given {@code int} value. This
45 * @param value the value, which must be in range for a {@code byte}
48 public static CstByte make(int value) { argument
64 CstByte(byte value) argument
[all...]
H A DCstChar.java27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
34 * @param value the {@code char} value
36 public static CstChar make(char value) { argument
37 return new CstChar(value);
41 * Makes an instance for the given {@code int} value. This
45 * @param value the value, which must be in range for a {@code char}
48 public static CstChar make(int value) { argument
64 CstChar(char value) argument
[all...]
H A DCstShort.java27 /** {@code non-null;} the value {@code 0} as an instance of this class */
31 * Makes an instance for the given value. This may (but does not
34 * @param value the {@code short} value
37 public static CstShort make(short value) { argument
38 return new CstShort(value);
42 * Makes an instance for the given {@code int} value. This
46 * @param value the value, which must be in range for a {@code short}
49 public static CstShort make(int value) { argument
65 CstShort(short value) argument
[all...]
H A DCstLong.java34 * Makes an instance for the given value. This may (but does not
37 * @param value the {@code long} value
39 public static CstLong make(long value) { argument
44 return new CstLong(value);
50 * @param value the {@code long} value
52 private CstLong(long value) { argument
53 super(value);
59 long value
[all...]
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DStringDataItem.java29 /** {@code non-null;} the string value */
30 private final CstUtf8 value; field in class:StringDataItem
35 * @param value {@code non-null;} the string value
37 public StringDataItem(CstUtf8 value) { argument
38 super(1, writeSize(value));
40 this.value = value;
44 * Gets the write size for a given value.
46 * @param value {
49 writeSize(CstUtf8 value) argument
[all...]
H A DStringIdItem.java31 /** {@code non-null;} the string value */
32 private final CstUtf8 value; field in class:StringIdItem
40 * @param value {@code non-null;} the string value
42 public StringIdItem(CstUtf8 value) { argument
43 if (value == null) {
44 throw new NullPointerException("value == null");
47 this.value = value;
59 return value
[all...]
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DNameValuePair.java24 * A (name, value) pair. These are used as the contents of an annotation.
30 /** {@code non-null;} the value */
31 private final Constant value; field in class:NameValuePair
37 * @param value {@code non-null;} the value
39 public NameValuePair(CstUtf8 name, Constant value) { argument
44 if (value == null) {
45 throw new NullPointerException("value == null");
49 if (value instanceof CstUtf8) {
50 throw new IllegalArgumentException("bad value
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DStringDataItem.java29 /** {@code non-null;} the string value */
30 private final CstString value; field in class:StringDataItem
35 * @param value {@code non-null;} the string value
37 public StringDataItem(CstString value) { argument
38 super(1, writeSize(value));
40 this.value = value;
44 * Gets the write size for a given value.
46 * @param value {
49 writeSize(CstString value) argument
[all...]
H A DStringIdItem.java29 /** {@code non-null;} the string value */
30 private final CstString value; field in class:StringIdItem
38 * @param value {@code non-null;} the string value
40 public StringIdItem(CstString value) { argument
41 if (value == null) {
42 throw new NullPointerException("value == null");
45 this.value = value;
57 return value
[all...]
H A DCallSiteItem.java27 /** {@code non-null;} the call site value */
28 private final CstCallSite value; field in class:CallSiteItem
30 /** {@code null-ok;} the encoded representation of the call site value */
36 * @param value {@code non-null;} the string value
38 public CallSiteItem(CstCallSite value) { argument
39 super(1, writeSize(value));
41 this.value = value;
45 * Gets the write size for a given value
50 writeSize(CstCallSite value) argument
[all...]
/dalvik/dx/src/com/android/dex/
H A DLeb128.java32 * given value.
34 * @param value the value in question
37 public static int unsignedLeb128Size(int value) { argument
40 int remaining = value >> 7;
101 * Writes {@code value} as an unsigned integer to {@code out}, starting at
104 public static void writeUnsignedLeb128(ByteOutput out, int value) { argument
105 int remaining = value >>> 7;
108 out.writeByte((byte) ((value & 0x7f) | 0x80));
109 value
120 writeSignedLeb128(ByteOutput out, int value) argument
[all...]
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DNameValuePair.java23 * A (name, value) pair. These are used as the contents of an annotation.
29 /** {@code non-null;} the value */
30 private final Constant value; field in class:NameValuePair
36 * @param value {@code non-null;} the value
38 public NameValuePair(CstString name, Constant value) { argument
43 if (value == null) {
44 throw new NullPointerException("value == null");
48 this.value = value;
[all...]
/dalvik/dx/tests/083-ssa-phi-placement/
H A DBlort.java55 int value = 0;
60 return new Integer(value);
63 return Boolean.valueOf(value != 0);

Completed in 1327 milliseconds

12345