Searched refs:jklass_ (Results 1 – 1 of 1) sorted by relevance
/art/compiler/jni/ |
D | jni_compiler_test.cc | 84 jklass_ = env_->FindClass("MyClassNatives"); in SetUpForTest() 85 ASSERT_TRUE(jklass_ != NULL) << method_name << " " << method_sig; in SetUpForTest() 88 jmethod_ = env_->GetStaticMethodID(jklass_, method_name, method_sig); in SetUpForTest() 90 jmethod_ = env_->GetMethodID(jklass_, method_name, method_sig); in SetUpForTest() 96 ASSERT_EQ(JNI_OK, env_->RegisterNatives(jklass_, methods, 1)) in SetUpForTest() 99 env_->UnregisterNatives(jklass_); in SetUpForTest() 102 jmethodID constructor = env_->GetMethodID(jklass_, "<init>", "()V"); in SetUpForTest() 103 jobj_ = env_->NewObject(jklass_, constructor); in SetUpForTest() 108 static jclass jklass_; member in art::JniCompilerTest 118 jclass JniCompilerTest::jklass_; member in art::JniCompilerTest [all …]
|