Home
last modified time | relevance | path

Searched refs:GetMethods (Results 1 – 16 of 16) sorted by relevance

/ark/runtime_core/runtime/
Dimtable_builder.cpp30 auto methods = entry.GetMethods(); in Build()
53 auto methods = entry.GetMethods(); in Build()
82 auto imp_methods = entry.GetMethods(); in UpdateClass()
Dclass_initializer.cpp323 for (auto &method : klass->GetMethods()) { in VerifyClass()
328 for (auto &method : klass->GetMethods()) { in VerifyClass()
333 for (auto &method : klass->GetMethods()) { in VerifyClass()
Dclass_linker.cpp79 Span<Method> methods = class_ptr->GetMethods(); in FreeClassData()
94 Span<Method *> imethods = itable[i].GetMethods(); in FreeClassData()
/ark/js_runtime/ecmascript/jspandafile/
Djs_pandafile.h51 JSMethod *GetMethods() const in GetMethods() function
/ark/runtime_core/runtime/include/
Ditable.h46 Span<Method *> GetMethods() const in GetMethods() function
Dclass-inl.h161 inline Span<Method> Class::GetMethods() const in GetMethods() function
169 return GetMethods(); in GetMethods()
180 auto methods = GetMethods<filter>(); in FindDirectMethod()
378 resolved = entry.GetMethods()[method->GetVTableIndex()]; in ResolveVirtualMethod()
Dclass.h171 Span<Method> GetMethods() const in GetMethods() function
178 return GetMethods().SubSpan(num_vmethods_); in GetStaticMethods()
810 Span<Method> GetMethods() const;
/ark/runtime_core/panda/
Dpanda.cpp73 for (auto &method : klass->GetMethods()) { in VerifierProcessFile()
128 for (auto &method : klass->GetMethods()) { in VerifierProcessFile()
/ark/runtime_core/runtime/dprofiler/
Ddprofiler.cpp77 for (const auto &method : klass->GetMethods()) { in AddClass()
/ark/runtime_core/verification/verifier/
Dverifier.cpp95 for (auto &method : klass->GetMethods()) { in VerifierProcessFile()
/ark/js_runtime/ecmascript/tooling/backend/
Djs_debugger.cpp167 JSMethod *methodsData = jsPandaFile->GetMethods(); in FindMethod()
/ark/runtime_core/disassembler/
Ddisassembler.h82 void GetMethods(const panda_file::File::EntityId &record_id);
Ddisassembler.cpp170 GetMethods(record_id); in GetRecord()
405 void Disassembler::GetMethods(const panda_file::File::EntityId &record_id) in GetMethods() function in panda::disasm::Disassembler
/ark/runtime_core/runtime/tests/
Dclass_linker_test.cpp113 EXPECT_EQ(klass->GetMethods().size(), 1U); in TEST_F()
Dinterpreter_test.cpp2215 Method *ctor = object_class->GetMethods().data(); in TEST_F()
2308 Method *ctor = object_class->GetMethods().data(); in TEST_F()
2413 Method *ctor = object_class->GetMethods().data(); in TEST_F()
3663 Method *callee = object_class->GetMethods().data(); in TestVirtualCallExceptions()
/ark/js_runtime/ecmascript/class_linker/
Dpanda_file_translator.cpp69 JSMethod *methods = jsPandaFile->GetMethods(); in TranslateClasses()