OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:exception_class
(Results
76 - 81
of
81
) sorted by null
1
2
3
4
/art/runtime/
jni_internal.cc
343
int ThrowNewException(JNIEnv* env, jclass
exception_class
, const char* msg, jobject cause)
367
jmethodID mid = env->GetMethodID(
exception_class
, "<init>", signature);
371
<< mirror::Class::PrettyClass(soa.Decode<mirror::Class>(
exception_class
));
376
env, reinterpret_cast<jthrowable>(env->NewObjectA(
exception_class
, mid, args)));
570
ScopedLocalRef<jclass>
exception_class
(env, env->GetObjectClass(exception.get()));
571
jmethodID mid = env->GetMethodID(
exception_class
.get(), "printStackTrace", "()V");
[
all
...]
thread.cc
[
all
...]
class_linker_test.cc
66
mirror::Class*
exception_class
=
local
68
EXPECT_TRUE(exception->InstanceOf(
exception_class
));
[
all
...]
class_linker.cc
144
ObjPtr<mirror::Class>
exception_class
= class_linker->FindClass(self, descriptor, class_loader);
local
146
if (
exception_class
== nullptr) {
153
ArtMethod* exception_init_method =
exception_class
->FindConstructor(
[
all
...]
debugger.cc
[
all
...]
/external/flatbuffers/tests/
py_test.py
42
def assertRaises(test_case, fn,
exception_class
):
51
test_case.assertTrue(isinstance(exc,
exception_class
))
[
all
...]
Completed in 297 milliseconds
1
2
3
4