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.java253 int intVal = field.getInt(instance); in run() local
254 System.out.println(" superInt value is " + intVal); in run()
259 intVal = field.getInt(instance); in run()
260 System.out.println(" superInt value is now " + intVal); in run()
262 intVal = field.getInt(instance); in run()
263 System.out.println(" superInt value (from short) is now " +intVal); in run()
265 intVal = field.getInt(instance); in run()
266 System.out.println(" superInt value is now " + intVal); in run()
336 intVal = field.getInt(instance); in run()
337 System.out.println(" cantTouchThis is " + intVal); in run()
[all …]
/art/runtime/
Ddebugger.cc2558 uint32_t intVal; in GetLocalValue() local
2559 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue()
2560 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal; in GetLocalValue()
2561 JDWP::Set1(buf + 1, intVal != 0); in GetLocalValue()
2570 uint32_t intVal; in GetLocalValue() local
2571 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue()
2572 VLOG(jdwp) << "get byte local " << reg << " = " << intVal; in GetLocalValue()
2573 JDWP::Set1(buf + 1, intVal); in GetLocalValue()
2583 uint32_t intVal; in GetLocalValue() local
2584 if (visitor.GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue()
[all …]