/dalvik/tests/064-field-access/src/ |
D | Main.java | 51 public Object getValue(Field field, Object obj, char type, in getValue() method in Main 181 localInst.getValue(localPubByteField, samePkgInst, 'B', null); in doTests() 186 this.getValue(localProtByteField, samePkgInst, 'B', null); in doTests() 191 this.getValue(localPrivFloatField, samePkgInst, 'F', in doTests() 203 this.getValue(otherProtShortField, this, 'S', in doTests() 205 this.getValue(otherProtShortField, otherPkgInst, 'S', in doTests() 207 this.getValue(otherPkgDoubleField, otherPkgInst, 'D', in doTests() 215 localInst.getValue(localPubByteField, null, 'B', in doTests() 218 this.getValue(subProtLongField, null, 'J', in doTests() 221 this.getValue(localPrivFloatField, null, 'F', in doTests() [all …]
|
/dalvik/tests/084-class-init/src/ |
D | Main.java | 68 SlowInit.FIELD0.getValue() + SlowInit.FIELD1.getValue() + in checkTiming() 69 SlowInit.FIELD2.getValue() + SlowInit.FIELD3.getValue()); in checkTiming() 79 SlowInit.FIELD0.getValue() + SlowInit.FIELD1.getValue() + in run() 80 SlowInit.FIELD2.getValue() + SlowInit.FIELD3.getValue()); in run()
|
D | IntHolder.java | 35 public int getValue() { in getValue() method in IntHolder
|
/dalvik/tests/078-polymorphic-virtual/src/ |
D | Main.java | 36 System.out.println(derived1.getValue()); in main() 37 System.out.println(derived2.getValue()); in main() 38 System.out.println(derived3.getValue()); in main()
|
D | Base.java | 29 public int getValue() { in getValue() method in Base
|
/dalvik/dx/src/com/android/dx/rop/cst/ |
D | CstBoolean.java | 72 return getValue() ? "boolean{true}" : "boolean{false}"; in toString() 88 return getValue() ? "true" : "false"; in toHuman() 96 public boolean getValue() { in getValue() method in CstBoolean
|
D | CstInteger.java | 67 if ((obj != null) && (obj.getValue() == value)) { in make() 113 public int getValue() { in getValue() method in CstInteger
|
D | CstLong.java | 84 public long getValue() { in getValue() method in CstLong
|
D | CstShort.java | 97 public short getValue() { in getValue() method in CstShort
|
D | CstChar.java | 96 public char getValue() { in getValue() method in CstChar
|
D | CstByte.java | 96 public byte getValue() { in getValue() method in CstByte
|
D | CstDouble.java | 87 public double getValue() { in getValue() method in CstDouble
|
D | CstFloat.java | 88 public float getValue() { in getValue() method in CstFloat
|
/dalvik/dx/src/com/android/dx/cf/attrib/ |
D | AttAnnotationDefault.java | 64 public Constant getValue() { in getValue() method in AttAnnotationDefault
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
D | AnnotationParser.java | 320 return CstByte.make(value.getValue()); in parseValue() 324 int intValue = value.getValue(); in parseValue() 325 return CstChar.make(value.getValue()); in parseValue() 345 return CstShort.make(value.getValue()); in parseValue() 349 return CstBoolean.make(value.getValue()); in parseValue()
|
D | CodeObserver.java | 115 ((CstLong) cst).getValue()); in visitConstant() 167 sb.append(Hex.s4(cases.getValue(i))); in visitSwitch()
|
/dalvik/dx/src/com/android/dx/rop/annotation/ |
D | NameValuePair.java | 109 public Constant getValue() { in getValue() method in NameValuePair
|
/dalvik/dx/src/com/android/dx/dex/file/ |
D | StringIdItem.java | 115 public CstUtf8 getValue() { in getValue() method in StringIdItem
|
D | StringIdsSection.java | 145 CstUtf8 value = string.getValue(); in intern()
|
D | AnnotationItem.java | 180 Constant value = pair.getValue(); in annotateTo()
|
D | ValueEncoder.java | 337 Constant value = pair.getValue(); in writeAnnotation() 502 addContents(file, pair.getValue()); in addContents()
|
/dalvik/dx/src/com/android/dx/cf/code/ |
D | SwitchList.java | 76 public int getValue(int n) { in getValue() method in SwitchList
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
D | CfTranslator.java | 195 return CstBoolean.make(((CstInteger) constant).getValue()); in coerceConstant() 198 return CstByte.make(((CstInteger) constant).getValue()); in coerceConstant() 201 return CstChar.make(((CstInteger) constant).getValue()); in coerceConstant() 204 return CstShort.make(((CstInteger) constant).getValue()); in coerceConstant()
|
/dalvik/dx/src/com/android/dx/ssa/ |
D | MoveParamCombiner.java | 152 int param = ((CstInteger)cstInsn.getConstant()).getValue(); in getParamIndex()
|
/dalvik/dx/src/com/android/dx/ssa/back/ |
D | FirstFitAllocator.java | 149 return ((CstInteger) origInsn.getConstant()).getValue(); in paramNumberFromMoveParam()
|