/dalvik/tests/078-polymorphic-virtual/src/ |
H A D | Derived1.java | 19 value += 1;
|
H A D | Derived2.java | 19 value += 2;
|
H A D | Derived3.java | 19 value += 3;
|
H A D | Base.java | 18 int value; field in class:Base 30 return value;
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
H A D | Leb128Utils.java | 32 * 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 D | IntSet.java | 27 * @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 D | Output.java | 34 * 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 D | IntSet.java | 27 * @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 D | Output.java | 34 * 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 writeUleb128(int value) argument 88 writeSleb128(int value) argument [all...] |
H A D | Leb128Utils.java | 33 * given value. 35 * @param value the value in question 38 public static int unsignedLeb128Size(int value) { argument 41 int remaining = value >> 7; 54 * given value. 56 * @param value the value in question 59 public static int signedLeb128Size(int value) { argument 62 int remaining = value >> 132 writeUnsignedLeb128(ByteOutput out, int value) argument 148 writeSignedLeb128(ByteOutput out, int value) argument [all...] |
/dalvik/dx/src/com/android/dx/cf/attrib/ |
H A D | AttAnnotationDefault.java | 28 /** {@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 D | CstBoolean.java | 33 * 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 D | CstByte.java | 27 /** {@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 D | CstChar.java | 27 /** {@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 D | CstShort.java | 27 /** {@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 D | CstLong.java | 34 * 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 D | CstBoolean.java | 33 * 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 D | CstByte.java | 27 /** {@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 D | CstChar.java | 27 /** {@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 D | CstShort.java | 27 /** {@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 D | CstLong.java | 34 * 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 D | StringDataItem.java | 29 /** {@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 D | StringIdItem.java | 31 /** {@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 D | NameValuePair.java | 24 * 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 D | StringDataItem.java | 29 /** {@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...] |