Lines Matching full:method_sig
49 const char* method_name, const char* method_sig) {
56 method = c->FindDirectMethod(method_name, method_sig);
58 method = c->FindVirtualMethod(method_name, method_sig);
60 ASSERT_TRUE(method != NULL) << method_name << " " << method_sig;
65 ASSERT_TRUE(method->GetEntryPointFromCompiledCode() != NULL) << method_name << " " << method_sig;
68 void SetUpForTest(bool direct, const char* method_name, const char* method_sig,
76 CompileForTest(class_loader_, direct, method_name, method_sig);
85 ASSERT_TRUE(jklass_ != NULL) << method_name << " " << method_sig;
88 jmethod_ = env_->GetStaticMethodID(jklass_, method_name, method_sig);
90 jmethod_ = env_->GetMethodID(jklass_, method_name, method_sig);
92 ASSERT_TRUE(jmethod_ != NULL) << method_name << " " << method_sig;
95 JNINativeMethod methods[] = { { method_name, method_sig, native_fnptr } };
97 << method_name << " " << method_sig;
104 ASSERT_TRUE(jobj_ != NULL) << method_name << " " << method_sig;