Searched defs:direct (Results 1 - 5 of 5) sorted by relevance

/art/runtime/
H A Dart_method.h165 constexpr uint32_t direct = kAccStatic | kAccPrivate | kAccConstructor; local
166 return (access_flags & direct) != 0;
771 // Entry within a dispatch table for this method. For static/direct methods the index is into
H A Djni_internal_test.cc616 void SetUpForTest(bool direct, const char* method_name, const char* method_sig, argument
631 ASSERT_EQ(direct, method->IsDirect());
644 if (direct) {
/art/runtime/verifier/
H A Dverifier_deps.cc349 // If the destination is a direct interface of a class defined in the DEX files being
353 ObjPtr<mirror::Class> direct = mirror::Class::GetDirectInterface(thread, current, i); local
354 if (direct == destination) {
356 } else if (IsInClassPath(direct)) {
357 boundaries.push_back(direct);
373 ObjPtr<mirror::Class> direct = mirror::Class::GetDirectInterface(thread, itf, j); local
374 if (direct == destination) {
376 } else if (IsInClassPath(direct)) {
377 boundaries.push_back(direct);
/art/compiler/jni/
H A Djni_compiler_test.cc240 bool direct,
252 ASSERT_EQ(direct, method->IsDirect()) << method_name << " " << method_sig;
267 bool direct,
275 CompileForTest(class_loader, direct, method_name, method_sig);
278 void SetUpForTest(bool direct, argument
293 CompileForTest(class_loader_, direct, method_name, method_sig);
305 if (direct) {
2199 SetUpForTest(/* direct */ true,
2221 SetUpForTest(/* direct */ true,
2244 SetUpForTest(/* direct */ tru
239 CompileForTest(jobject class_loader, bool direct, const char* method_name, const char* method_sig) argument
266 CompileForTestWithCurrentJni(jobject class_loader, bool direct, const char* method_name_orig, const char* method_sig) argument
[all...]
/art/compiler/optimizing/
H A Dcode_generator_mips.cc581 /* direct */ false);
675 /* direct */ false);
1902 bool direct) {
1904 GenerateInvokeRuntime(entry_point_offset, direct);
1907 void CodeGeneratorMIPS::GenerateInvokeRuntime(int32_t entry_point_offset, bool direct) { argument
1911 if (direct) {
3557 // TODO: more efficient (direct) comparison with a constant.
7582 // case of the `switch` code as it was previously (with a direct
1899 InvokeRuntimeWithoutRecordingPcInfo(int32_t entry_point_offset, HInstruction* instruction, SlowPathCode* slow_path, bool direct) argument

Completed in 134 milliseconds