Home
last modified time | relevance | path

Searched refs:SetLocalVariableInt (Results 1 – 16 of 16) sorted by relevance

/art/test/1912-get-set-local-primitive/src/art/
DTest1912.java236 NamedSet("Int", Locals::SetLocalVariableInt, Integer.MAX_VALUE),
250 NamedSet("IntBoolSize", Locals::SetLocalVariableInt, 1));
252 NamedSet("IntByteSize", Locals::SetLocalVariableInt, Byte.MAX_VALUE - 1));
255 NamedSet("IntCharSize", Locals::SetLocalVariableInt, Character.MAX_VALUE - 1));
257 NamedSet("IntShortSize", Locals::SetLocalVariableInt, Short.MAX_VALUE - 1));
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1916-get-set-current-frame/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
DTest1916.java118 Locals.SetLocalVariableInt(target_set, depth, slot, SET_VALUE); in runSet()
/art/test/1923-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1913-get-set-local-objects/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1925-self-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1926-missed-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1924-frame-pop-toggle/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1939-proxy-frames/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1935-get-set-current-frame-jit/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1911-get-local-var-table/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1914-get-local-instance/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
/art/test/1915-get-set-local-current-thread/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() method in Locals
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() method in Locals
DTest1915.java68 Locals.SetLocalVariableInt(Thread.currentThread(), depth, slot, SET_VALUE); in run()
/art/test/1935-get-set-current-frame-jit/src/
DMain.java142 Locals.SetLocalVariableInt(target_set, depth, slot, SET_VALUE); in runSet()