Home
last modified time | relevance | path

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

/art/test/046-reflect/src/
DMain.java251 int intVal = field.getInt(instance); in run() local
252 System.out.println(" superInt value is " + intVal); in run()
257 intVal = field.getInt(instance); in run()
258 System.out.println(" superInt value is now " + intVal); in run()
260 intVal = field.getInt(instance); in run()
261 System.out.println(" superInt value (from short) is now " +intVal); in run()
263 intVal = field.getInt(instance); in run()
264 System.out.println(" superInt value is now " + intVal); in run()
334 intVal = field.getInt(instance); in run()
335 System.out.println(" cantTouchThis is " + intVal); in run()
[all …]
/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/runtime/
Ddebugger.cc2491 uint32_t intVal; in GetLocalValue() local
2492 if (GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue()
2493 VLOG(jdwp) << "get boolean local " << reg << " = " << intVal; in GetLocalValue()
2494 JDWP::Set1(buf_+1, intVal != 0); in GetLocalValue()
2503 uint32_t intVal; in GetLocalValue() local
2504 if (GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue()
2505 VLOG(jdwp) << "get byte local " << reg << " = " << intVal; in GetLocalValue()
2506 JDWP::Set1(buf_+1, intVal); in GetLocalValue()
2516 uint32_t intVal; in GetLocalValue() local
2517 if (GetVReg(m, reg, kIntVReg, &intVal)) { in GetLocalValue()
[all …]