/art/test/542-inline-trycatch/src/ |
D | Main.java | 48 int val = 0; in testSingleBlockFromTry() local 51 val = $inline$SingleBlock("42"); in testSingleBlockFromTry() 55 assertEquals(42, val); in testSingleBlockFromTry() 64 int val = 0; in testSingleBlockFromCatch() local 69 val = $inline$SingleBlock("42"); in testSingleBlockFromCatch() 71 assertEquals(42, val); in testSingleBlockFromCatch() 75 int val = 0; in testMultipleBlocksFromTry() local 78 val = $inline$MultipleBlocks("42", false); in testMultipleBlocksFromTry() 82 assertEquals(42, val); in testMultipleBlocksFromTry() 85 val = $inline$MultipleBlocks("20", true); in testMultipleBlocksFromTry() [all …]
|
/art/test/1974-resize-array/ |
D | expected.txt | 2 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/ti-agent/ |
D | early_return_helper.cc | 35 JNIEnv* env, jclass k ATTRIBUTE_UNUSED, 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, jclass k ATTRIBUTE_UNUSED, 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, jclass k ATTRIBUTE_UNUSED, 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, jclass k ATTRIBUTE_UNUSED, 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, jclass k ATTRIBUTE_UNUSED, 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/ |
D | env.py | 33 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/runtime/ |
D | offsets.h | 30 constexpr explicit Offset(size_t val) : val_(val) {} in Offset() argument 52 constexpr explicit FrameOffset(size_t val) : Offset(val) {} in FrameOffset() argument 61 constexpr explicit ThreadOffset(size_t val) : Offset(val) {} in ThreadOffset() argument 70 constexpr explicit MemberOffset(size_t val) : Offset(val) {} in MemberOffset() argument
|
/art/test/1935-get-set-current-frame-jit/src/art/ |
D | Locals.java | 104 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/1939-proxy-frames/src/art/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/ |
D | Locals.java | 104 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/runtime/interpreter/ |
D | shadow_frame-inl.h | 27 inline void ShadowFrame::SetVRegReference(size_t i, ObjPtr<mirror::Object> val) in SetVRegReference() argument 31 VerifyObject(val); in SetVRegReference() 33 ReadBarrier::MaybeAssertToSpaceInvariant(val.Ptr()); in SetVRegReference() 35 reinterpret_cast<StackReference<mirror::Object>*>(vreg)->Assign(val); in SetVRegReference() 36 References()[i].Assign(val); in SetVRegReference()
|
/art/test/990-field-trace/src/art/ |
D | Test990.java | 83 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 …]
|
/art/libartbase/base/ |
D | endian_utils.h | 66 inline void SetBytes(uint8_t* buf, T val) { in SetBytes() argument 67 memcpy(buf, &val, sizeof(T)); in SetBytes() 70 inline void Set1(uint8_t* buf, uint8_t val) { in Set1() argument 71 *buf = val; in Set1() 74 inline void Set2BE(uint8_t* buf, uint16_t val) { in Set2BE() argument 75 SetBytes<uint16_t>(buf, htobe16(val)); in Set2BE() 78 inline void Set4BE(uint8_t* buf, uint32_t val) { in Set4BE() argument 79 SetBytes<uint32_t>(buf, htobe32(val)); in Set4BE() 82 inline void Set8BE(uint8_t* buf, uint64_t val) { in Set8BE() argument 83 SetBytes<uint64_t>(buf, htobe64(val)); in Set8BE()
|
/art/test/988-method-trace/src/art/ |
D | Test988.java | 73 private static String genericToString(Object val) { in genericToString() argument 74 if (val == null) { in genericToString() 76 } else if (val.getClass().isArray()) { in genericToString() 77 return arrayToString(val); in genericToString() 78 } else if (val instanceof Throwable) { in genericToString() 80 Throwable thr = ((Throwable) val); in genericToString() 92 return val.toString(); in genericToString() 108 private static String arrayToString(Object val) { in arrayToString() argument 109 Class<?> klass = val.getClass(); in arrayToString() 112 Arrays.stream((Object[])val).map(new Function<Object, String>() { in arrayToString() [all …]
|