Home
last modified time | relevance | path

Searched refs:intVal (Results 1 – 4 of 4) sorted by relevance

/art/test/110-field-access/src/
DMain.java27 int intVal = 42; field in Main
35 result = intVal; in timeField()
62 int cachedIntVal = this.intVal; in timeFieldCached()
/art/test/046-reflect/src/
DMain.java266 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/
DMain.java101 static int intVal = -1; field in Main
121 return intVal; in $noinline$getInt()
/art/runtime/
Ddebugger.cc2716 uint32_t intVal; in GetLocalValue() local
2717 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue()
2720 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal; in GetLocalValue()
2721 JDWP::Set1(buf + 1, intVal != 0); in GetLocalValue()
2726 uint32_t intVal; in GetLocalValue() local
2727 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue()
2730 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal; in GetLocalValue()
2731 JDWP::Set1(buf + 1, intVal); in GetLocalValue()
2737 uint32_t intVal; in GetLocalValue() local
2738 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue()
[all …]