Home
last modified time | relevance | path

Searched refs:getValue (Results 1 – 25 of 37) sorted by relevance

12

/dalvik/tests/064-field-access/src/
DMain.java51 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/
DMain.java68 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()
DIntHolder.java35 public int getValue() { in getValue() method in IntHolder
/dalvik/tests/078-polymorphic-virtual/src/
DMain.java36 System.out.println(derived1.getValue()); in main()
37 System.out.println(derived2.getValue()); in main()
38 System.out.println(derived3.getValue()); in main()
DBase.java29 public int getValue() { in getValue() method in Base
/dalvik/dx/src/com/android/dx/rop/cst/
DCstBoolean.java72 return getValue() ? "boolean{true}" : "boolean{false}"; in toString()
88 return getValue() ? "true" : "false"; in toHuman()
96 public boolean getValue() { in getValue() method in CstBoolean
DCstInteger.java67 if ((obj != null) && (obj.getValue() == value)) { in make()
113 public int getValue() { in getValue() method in CstInteger
DCstLong.java84 public long getValue() { in getValue() method in CstLong
DCstShort.java97 public short getValue() { in getValue() method in CstShort
DCstChar.java96 public char getValue() { in getValue() method in CstChar
DCstByte.java96 public byte getValue() { in getValue() method in CstByte
DCstDouble.java87 public double getValue() { in getValue() method in CstDouble
DCstFloat.java88 public float getValue() { in getValue() method in CstFloat
/dalvik/dx/src/com/android/dx/cf/attrib/
DAttAnnotationDefault.java64 public Constant getValue() { in getValue() method in AttAnnotationDefault
/dalvik/dx/src/com/android/dx/cf/direct/
DAnnotationParser.java320 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()
DCodeObserver.java115 ((CstLong) cst).getValue()); in visitConstant()
167 sb.append(Hex.s4(cases.getValue(i))); in visitSwitch()
/dalvik/dx/src/com/android/dx/rop/annotation/
DNameValuePair.java109 public Constant getValue() { in getValue() method in NameValuePair
/dalvik/dx/src/com/android/dx/dex/file/
DStringIdItem.java115 public CstUtf8 getValue() { in getValue() method in StringIdItem
DStringIdsSection.java145 CstUtf8 value = string.getValue(); in intern()
DAnnotationItem.java180 Constant value = pair.getValue(); in annotateTo()
DValueEncoder.java337 Constant value = pair.getValue(); in writeAnnotation()
502 addContents(file, pair.getValue()); in addContents()
/dalvik/dx/src/com/android/dx/cf/code/
DSwitchList.java76 public int getValue(int n) { in getValue() method in SwitchList
/dalvik/dx/src/com/android/dx/dex/cf/
DCfTranslator.java195 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/
DMoveParamCombiner.java152 int param = ((CstInteger)cstInsn.getConstant()).getValue(); in getParamIndex()
/dalvik/dx/src/com/android/dx/ssa/back/
DFirstFitAllocator.java149 return ((CstInteger) origInsn.getConstant()).getValue(); in paramNumberFromMoveParam()

12