| /arkcompiler/runtime_core/static_core/runtime/ |
| D | imtable_builder.cpp | 30 auto methods = entry.GetMethods(); in Build() 53 auto methods = entry.GetMethods(); in Build() 82 auto impMethods = entry.GetMethods(); in UpdateClass()
|
| D | class_initializer.cpp | 400 for (auto &method : klass->GetMethods()) { in VerifyClass() 409 for (auto &method : klass->GetMethods()) { in VerifyClass()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/types/ |
| D | ets_class.cpp | 138 return GetMethods().size(); in GetMethodsNum() 144 auto methods = GetMethods(); in GetMethodByIndex() 185 PandaVector<EtsMethod *> EtsClass::GetMethods() in GetMethods() function in panda::ets::EtsClass 190 auto directMethods = c->GetRuntimeClass()->GetMethods(); in GetMethods() 207 auto directMethods = c->GetRuntimeClass()->GetMethods(); in GetMethods() 230 auto methods = GetRuntimeClass()->GetMethods(); in GetConstructors()
|
| D | ets_class.h | 117 PandaVector<EtsMethod *> GetMethods(); 235 for (auto &method : GetRuntimeClass()->GetMethods()) { in EnumerateMethods()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/ |
| D | ets_itable_builder.cpp | 138 entry.GetMethods()[j] = res; in Resolve() 160 auto methods = entry.GetMethods(); in DumpITable()
|
| /arkcompiler/runtime_core/static_core/compiler/aot/aot_builder/ |
| D | llvm_aot_builder.h | 28 const std::vector<CompiledMethod> &GetMethods() in GetMethods() function
|
| /arkcompiler/runtime_core/static_core/verification/verifier/ |
| D | verifier.cpp | 99 const std::vector<std::string> &methodNames = cliOptions.GetMethods(); in RunVerifier() 120 for (auto &method : klass.GetMethods()) { in RunVerifier() 225 for (auto &method : klass->GetMethods()) { in RunVerifier()
|
| /arkcompiler/runtime_core/static_core/runtime/dprofiler/ |
| D | dprofiler.cpp | 76 for (const auto &method : klass->GetMethods()) { in AddClass()
|
| /arkcompiler/runtime_core/static_core/runtime/include/ |
| D | itable.h | 45 Span<Method *> GetMethods() const in GetMethods() function
|
| D | class.h | 184 Span<Method> GetMethods() const in GetMethods() function 196 return GetMethods().SubSpan(numVmethods_); in GetStaticMethods() 846 for (auto &m : GetMethods()) { in LookupGetterByName() 886 for (auto &m : GetMethods()) { in LookupSetterByName() 941 Span<Method> GetMethods() const;
|
| D | class-inl.h | 261 inline Span<Method> Class::GetMethods() const in GetMethods() function 269 return GetMethods(); in GetMethods() 282 auto methods = GetMethods<FindFilter::STATIC>(); in FindDirectMethod() 291 auto methods = GetMethods<FindFilter::INSTANCE>(); in FindDirectMethod() 302 auto methods = GetMethods<FindFilter::COPIED>(); in FindDirectMethod() 545 resolved = entry.GetMethods()[method->GetVTableIndex()]; in ResolveVirtualMethod()
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | getmethod_test.cpp | 98 auto methods = klass->GetMethods(); in TEST_F()
|
| D | interpreter_test.cpp | 1223 Method *ctor = objectClass->GetMethods().data(); in TEST_F() 1317 Method *ctor = objectClass->GetMethods().data(); in TEST_F() 1423 Method *ctor = objectClass->GetMethods().data(); in TEST_F() 2419 auto *callee = classA->GetMethods().data(); in TEST_F() 2473 auto *callee = classA->GetMethods().data(); in TEST_F() 2530 auto *callee = classA->GetMethods().data(); in TEST_F() 2586 auto *callee = classA->GetMethods().data(); in TEST_F()
|
| /arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/ |
| D | ets_class_wrapper.h | 115 Span<LazyEtsMethodWrapperLink> GetMethods() in GetMethods() function
|
| D | ets_class_wrapper.cpp | 244 for (auto &m : method->GetClass()->GetMethods()) { in CalculateProperties() 292 for (auto &m : klass->GetMethods()) { in CalculateProperties() 324 for (auto &link : wclass->GetMethods()) { in CalculateProperties()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/src/ |
| D | class_hierarchy.cpp | 483 for (auto &func : implInterface->GetMethods()) { in NeedClinitCheckRecursively() 631 for (const auto &methodPair : klass->GetMIRStructType()->GetMethods()) { in AddKlassRelationAndMethods() 818 for (auto &method : klass->GetMethods()) { in MarkClassFlags() 826 for (auto &method : klass->GetMethods()) { in MarkClassFlags() 857 for (MIRFunction *func : klass->GetMethods()) { in DumpDevirtualList()
|
| D | call_graph.cpp | 259 for (; j < mirStructType->GetMethods().size(); ++j) { in DelNode() 261 … mirStructType->GetMethods().erase(mirStructType->GetMethods().begin() + static_cast<ssize_t>(j)); in DelNode() 442 auto &klassMethods = klass->GetMethods(); in GetOrGenCGNode() 1117 for (MIRFunction *const &method : klass.GetMethods()) { in SearchDefInMemberMethods() 1239 for (auto &func : klass.GetMethods()) { in DoDevirtual() 1305 for (MIRFunction *const &method : tmpKlass->GetMethods()) { in DoDevirtual() 1362 for (MIRFunction *const &method : iKlass->GetMethods()) { in DoDevirtual() 1428 for (MIRFunction *const &method : currKlass->GetMethods()) { in DoDevirtual()
|
| D | clone.cpp | 128 classType->GetMethods().push_back(MethodPair( in CloneFunction()
|
| /arkcompiler/runtime_core/static_core/runtime/hotreload/ |
| D | hotreload.cpp | 386 auto oldMethods = runtimeClass->GetMethods(); in MethodChangesCheck() 387 auto newMethods = tmpClass->GetMethods(); in MethodChangesCheck() 441 auto methods = cls->GetMethods(); in VerifyClassConsistency()
|
| /arkcompiler/runtime_core/static_core/runtime/tooling/inspector/tests/ |
| D | object_repository.cpp | 67 auto methods = klass->GetMethods(); in SetUpTestSuite()
|
| D | debug_info_cache.cpp | 69 auto methods = klass->GetMethods(); in SetUpTestSuite()
|
| /arkcompiler/runtime_core/static_core/runtime/profilesaver/ |
| D | profile_saver.cpp | 199 Span<Method> tmpMethods = klass->GetMethods(); in TranverseAndCacheResolvedClassAndMethods()
|
| /arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mpl2mpl/include/ |
| D | class_hierarchy.h | 87 const MapleList<MIRFunction *> &GetMethods() const in GetMethods() function
|
| /arkcompiler/runtime_core/static_core/disassembler/ |
| D | disassembler.h | 105 void GetMethods(const panda_file::File::EntityId &recordId);
|
| /arkcompiler/runtime_core/disassembler/ |
| D | disassembler.h | 92 void GetMethods(const panda_file::File::EntityId &record_id);
|