Home
last modified time | relevance | path

Searched refs:val (Results 1 – 25 of 239) sorted by relevance

12345678910

/art/test/1974-resize-array/
Dexpected-stdout.txt2 val is: [1, 2, 3] resize +3
3 val is: [1, 2, 3, 0, 0, 0, 0, 0]
7 val is: [1, 2, 3, 4] resize +3
9 val is: [1, 2, 3, 4, 0, 0, 0]
13 val is: [weak, ref] resize +3
14 val is: [weak, ref, null, null, null, null, null]
18 val is: [<SELF REF>, A, B, C] resize +5 item 0 is [<SELF REF>, A, B, C]
19 val is: [<SELF REF>, A, B, C, null, null, null, null, null]
20 val is: [<SELF REF>, A, B, C, null, null, null, null, null]
26 val is: [<SELF REF>, A, B, C, null, null, null, null, null] resize -7 item 0 is [<SELF REF>, A, B, …
[all …]
/art/test/542-inline-trycatch/src/
DMain.java37 int val = 0; in testSingleBlockFromTry() local
40 val = $inline$SingleBlock("42"); in testSingleBlockFromTry()
44 assertEquals(42, val); in testSingleBlockFromTry()
53 int val = 0; in testSingleBlockFromCatch() local
58 val = $inline$SingleBlock("42"); in testSingleBlockFromCatch()
60 assertEquals(42, val); in testSingleBlockFromCatch()
64 int val = 0; in testMultipleBlocksFromTry() local
67 val = $inline$MultipleBlocks("42", false); in testMultipleBlocksFromTry()
71 assertEquals(42, val); in testMultipleBlocksFromTry()
74 val = $inline$MultipleBlocks("20", true); in testMultipleBlocksFromTry()
[all …]
/art/openjdkjvmti/
Dti_logging.cc108 bool val = (value == JNI_TRUE) ? true : false; in SetVerboseFlag() local
110 art::gLogVerbosity.collector = val; in SetVerboseFlag()
111 art::gLogVerbosity.compiler = val; in SetVerboseFlag()
112 art::gLogVerbosity.deopt = val; in SetVerboseFlag()
113 art::gLogVerbosity.heap = val; in SetVerboseFlag()
114 art::gLogVerbosity.interpreter = val; in SetVerboseFlag()
115 art::gLogVerbosity.jdwp = val; in SetVerboseFlag()
116 art::gLogVerbosity.jit = val; in SetVerboseFlag()
117 art::gLogVerbosity.monitor = val; in SetVerboseFlag()
118 art::gLogVerbosity.oat = val; in SetVerboseFlag()
[all …]
/art/test/2241-checker-inline-try-catch/src/
DMain.java100 int val = 0; in $noinline$testDoNotInlineInsideTryInlineInsideCatch() local
103 val = DoNotInlineOOBTryCatch(numbers); in $noinline$testDoNotInlineInsideTryInlineInsideCatch()
110 $noinline$assertEquals(1, val); in $noinline$testDoNotInlineInsideTryInlineInsideCatch()
140 int val = 0; in $noinline$testBeforeAfterTryCatch() local
143 val = other_array[0]; in $noinline$testBeforeAfterTryCatch()
145 $noinline$assertEquals(0, val); in $noinline$testBeforeAfterTryCatch()
146 val = 1; in $noinline$testBeforeAfterTryCatch()
148 $noinline$assertEquals(1, val); in $noinline$testBeforeAfterTryCatch()
199 int val = 0; in $inline$OOBTryCatchFinally() local
201 val = 1; in $inline$OOBTryCatchFinally()
[all …]
/art/test/661-checker-simd-cf-loops/src/
DMain.java79 int val = x[i]; in $compile$noinline$FullDiamond() local
80 if (val != MAGIC_VALUE_C) { in $compile$noinline$FullDiamond()
104 boolean val = x[i]; in $compile$noinline$SimpleBoolean()
105 if (val != y[i]) { in $compile$noinline$SimpleBoolean()
119 byte val = x[i]; in $compile$noinline$SimpleByte()
120 if (val != MAGIC_VALUE_C) { in $compile$noinline$SimpleByte()
148 short val = x[i]; in $compile$noinline$SimpleShort() local
149 if (val != MAGIC_VALUE_C) { in $compile$noinline$SimpleShort()
163 char val = x[i]; in $compile$noinline$SimpleChar() local
164 if (val != MAGIC_VALUE_C) { in $compile$noinline$SimpleChar()
[all …]
/art/test/2244-checker-remove-try-boundary/src/
DMain.java109 private static int $noinline$testOptimizeSeparateBranches(int a, boolean val) { in $noinline$testOptimizeSeparateBranches() argument
111 if (val) { in $noinline$testOptimizeSeparateBranches()
141 public static int $noinline$testDoNotOptimizeOneBranchThrows(int a, boolean val) { in $noinline$testDoNotOptimizeOneBranchThrows() argument
149 if (val) { in $noinline$testDoNotOptimizeOneBranchThrows()
185 public static int $noinline$testOptimizeAfterOneBranchDisappears(int a, boolean val) { in $noinline$testOptimizeAfterOneBranchDisappears() argument
193 if (val && !val) { in $noinline$testOptimizeAfterOneBranchDisappears()
264 public static int $noinline$testRemoveTryBoundaryNestedButNotCatch(int a, boolean val) { in $noinline$testRemoveTryBoundaryNestedButNotCatch() argument
270 if (val) { in $noinline$testRemoveTryBoundaryNestedButNotCatch()
332 int a, boolean val) { in $noinline$testNestedTryBoundariesWithLoopAndCatchOutsideOfLoop() argument
337 if (val) { in $noinline$testNestedTryBoundariesWithLoopAndCatchOutsideOfLoop()
/art/test/ti-agent/
Dearly_return_helper.cc35 JNIEnv* env, [[maybe_unused]] jclass k, jthread thr, jfloat val) { in Java_art_NonStandardExit_forceEarlyReturnFloat() argument
36 JvmtiErrorToException(env, jvmti_env, jvmti_env->ForceEarlyReturnFloat(thr, val)); in Java_art_NonStandardExit_forceEarlyReturnFloat()
40 JNIEnv* env, [[maybe_unused]] jclass k, jthread thr, jdouble val) { in Java_art_NonStandardExit_forceEarlyReturnDouble() argument
41 JvmtiErrorToException(env, jvmti_env, jvmti_env->ForceEarlyReturnDouble(thr, val)); in Java_art_NonStandardExit_forceEarlyReturnDouble()
45 JNIEnv* env, [[maybe_unused]] jclass k, jthread thr, jlong val) { in Java_art_NonStandardExit_forceEarlyReturnLong() argument
46 JvmtiErrorToException(env, jvmti_env, jvmti_env->ForceEarlyReturnLong(thr, val)); in Java_art_NonStandardExit_forceEarlyReturnLong()
50 JNIEnv* env, [[maybe_unused]] jclass k, jthread thr, jint val) { in Java_art_NonStandardExit_forceEarlyReturnInt() argument
51 JvmtiErrorToException(env, jvmti_env, jvmti_env->ForceEarlyReturnInt(thr, val)); in Java_art_NonStandardExit_forceEarlyReturnInt()
60 JNIEnv* env, [[maybe_unused]] jclass k, jthread thr, jobject val) { in Java_art_NonStandardExit_forceEarlyReturnObject() argument
61 JvmtiErrorToException(env, jvmti_env, jvmti_env->ForceEarlyReturnObject(thr, val)); in Java_art_NonStandardExit_forceEarlyReturnObject()
/art/test/testrunner/
Denv.py33 val = _env.get(var)
34 if val:
35 if val == "True" or val == "true":
37 if val == "False" or val == "false":
45 val = _get_build_var(var)
46 if val:
47 if val == "True" or val == "true":
49 if val == "False" or val == "false":
/art/test/1939-proxy-frames/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1923-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1965-get-set-local-primitive-no-tables/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1967-get-set-local-bad-slot/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/jvmti-common/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1966-get-set-local-objects-no-table/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1926-missed-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1924-frame-pop-toggle/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1912-get-set-local-primitive/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1925-self-frame-pop/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/1914-get-local-instance/src/art/
DLocals.java104 public static void SetLocalVariableInt(Thread thr, int depth, int slot, Object val) { in SetLocalVariableInt() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/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() argument
105 SetLocalVariableInt(thr, depth, slot, ((Number)val).intValue()); in SetLocalVariableInt()
107 public static void SetLocalVariableLong(Thread thr, int depth, int slot, Object val) { in SetLocalVariableLong() argument
108 SetLocalVariableLong(thr, depth, slot, ((Number)val).longValue()); in SetLocalVariableLong()
110 public static void SetLocalVariableFloat(Thread thr, int depth, int slot, Object val) { in SetLocalVariableFloat() argument
111 SetLocalVariableFloat(thr, depth, slot, ((Number)val).floatValue()); in SetLocalVariableFloat()
113 public static void SetLocalVariableDouble(Thread thr, int depth, int slot, Object val) { in SetLocalVariableDouble() argument
114 SetLocalVariableDouble(thr, depth, slot, ((Number)val).doubleValue()); in SetLocalVariableDouble()
116 public static native void SetLocalVariableInt(Thread thr, int depth, int slot, int val); in SetLocalVariableInt() argument
117 public static native void SetLocalVariableLong(Thread thr, int depth, int slot, long val); in SetLocalVariableLong() argument
[all …]
/art/test/990-field-trace/src/art/
DTest990.java83 private static String genericToString(Object val) { in genericToString() argument
84 if (val == null) { in genericToString()
86 } else if (val.getClass().isArray()) { in genericToString()
87 return arrayToString(val); in genericToString()
88 } else if (val instanceof Throwable) { in genericToString()
90 ((Throwable) val).printStackTrace(new PrintWriter(w)); in genericToString()
93 return val.toString(); in genericToString()
109 private static String arrayToString(Object val) { in arrayToString() argument
110 Class<?> klass = val.getClass(); in arrayToString()
113 Arrays.stream((Object[])val).map(new Function<Object, String>() { in arrayToString()
[all …]

12345678910