Searched refs:intVal (Results 1 – 4 of 4) sorted by relevance
/art/test/110-field-access/src/ |
D | Main.java | 27 int intVal = 42; field in Main 35 result = intVal; in timeField() 62 int cachedIntVal = this.intVal; in timeFieldCached()
|
/art/test/046-reflect/src/ |
D | Main.java | 266 int intVal = field.getInt(instance); in run() local 267 System.out.println(" superInt value is " + intVal); in run() 272 intVal = field.getInt(instance); in run() 273 System.out.println(" superInt value is now " + intVal); in run() 275 intVal = field.getInt(instance); in run() 276 System.out.println(" superInt value (from short) is now " +intVal); in run() 278 intVal = field.getInt(instance); in run() 279 System.out.println(" superInt value is now " + intVal); in run() 349 intVal = field.getInt(instance); in run() 350 System.out.println(" cantTouchThis is " + intVal); in run() [all …]
|
/art/test/711-checker-type-conversion/src/ |
D | Main.java | 101 static int intVal = -1; field in Main 121 return intVal; in $noinline$getInt()
|
/art/runtime/ |
D | debugger.cc | 2644 uint32_t intVal; in GetLocalValue() local 2645 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue() 2648 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal; in GetLocalValue() 2649 JDWP::Set1(buf + 1, intVal != 0); in GetLocalValue() 2654 uint32_t intVal; in GetLocalValue() local 2655 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue() 2658 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal; in GetLocalValue() 2659 JDWP::Set1(buf + 1, intVal); in GetLocalValue() 2665 uint32_t intVal; in GetLocalValue() local 2666 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue() [all …]
|