Home
last modified time | relevance | path

Searched refs:th (Results 1 – 9 of 9) sorted by relevance

/art/test/003-omnibus-opcodes/src/
DThrow.java117 Throw th = new Throw(); in run() local
119 th.one(); in run()
120 th.twoA(); in run()
121 th.twoN(); in run()
122 th.rethrow(); in run()
DMain.java67 } catch (Throwable th) { in run()
70 th.printStackTrace(System.out); in run()
/art/test/068-classloader/src/
DFancyLoader.java168 } catch (Throwable th) { in findClassNonDalvik()
169 throw new ClassNotFoundException("defineClass failed", th); in findClassNonDalvik()
/art/test/647-jni-get-field-id/src/
DDefiningLoader.java181 } catch (Throwable th) { in findClassNonDalvik()
182 throw new ClassNotFoundException("defineClass failed", th); in findClassNonDalvik()
/art/test/626-const-class-linking/src/
DDefiningLoader.java181 } catch (Throwable th) { in findClassNonDalvik()
182 throw new ClassNotFoundException("defineClass failed", th); in findClassNonDalvik()
/art/tools/ahat/src/
Dstyle.css38 table th {
/art/test/978-virtual-interface/smali/
DIface.smali18 # // methods to ensure the 11'th target lines up to the same vtable slot as the
/art/runtime/interpreter/
Dunstarted_runtime_test.cc1241 auto runner = [&](Thread* th, ShadowFrame* shadow_frame, mirror::String* name, JValue* result) in TEST_F()
1246 UnstartedClassForNameLong(th, shadow_frame, result, 0); in TEST_F()
1258 auto runner = [&](Thread* th, ShadowFrame* shadow_frame, mirror::String* name, JValue* result) in TEST_F()
1263 UnstartedClassForNameLong(th, shadow_frame, result, 0); in TEST_F()
1279 auto runner = [&](Thread* th, ShadowFrame* shadow_frame, mirror::String* name, JValue* result) in TEST_F()
1284 UnstartedClassForNameLong(th, shadow_frame, result, 0); in TEST_F()
/art/runtime/
Dreflection.cc672 ScopedLocalRef<jthrowable> th(soa.Env(), soa.Env()->ExceptionOccurred()); in InvokeMethod() local
681 jobject exception_instance = soa.Env()->NewObject(exception_class, mid, th.get()); in InvokeMethod()