Home
last modified time | relevance | path

Searched refs:intVal (Results 1 – 3 of 3) 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.java267 int intVal = field.getInt(instance); in run() local
268 System.out.println(" superInt value is " + intVal); in run()
273 intVal = field.getInt(instance); in run()
274 System.out.println(" superInt value is now " + intVal); in run()
276 intVal = field.getInt(instance); in run()
277 System.out.println(" superInt value (from short) is now " +intVal); in run()
279 intVal = field.getInt(instance); in run()
280 System.out.println(" superInt value is now " + intVal); in run()
350 intVal = field.getInt(instance); in run()
351 System.out.println(" cantTouchThis is " + intVal); in run()
[all …]
/art/runtime/
Ddebugger.cc2631 uint32_t intVal; in GetLocalValue() local
2632 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue()
2635 VLOG(jdwp) << "get boolean local " << vreg << " = " << intVal; in GetLocalValue()
2636 JDWP::Set1(buf + 1, intVal != 0); in GetLocalValue()
2641 uint32_t intVal; in GetLocalValue() local
2642 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue()
2645 VLOG(jdwp) << "get byte local " << vreg << " = " << intVal; in GetLocalValue()
2646 JDWP::Set1(buf + 1, intVal); in GetLocalValue()
2652 uint32_t intVal; in GetLocalValue() local
2653 if (!visitor.GetVReg(m, vreg, kIntVReg, &intVal)) { in GetLocalValue()
[all …]