Home
last modified time | relevance | path

Searched refs:methodNames (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/runtime_core/static_core/libpandafile/
Dpgo.cpp117 auto methodNames = static_cast<CodeItem *>(item.get())->GetMethodNames(); in ProfileGuidedRelayout() local
118 return std::find(methodNames.begin(), methodNames.end(), p.second) != methodNames.end(); in ProfileGuidedRelayout()
/arkcompiler/ets_runtime/ecmascript/patch/
Dquick_fix_manager.cpp243 CUnorderedSet<CString> methodNames = ParseStackInfo(stackInfo); in IsQuickFixCausedException() local
252 methodNames.find(CString(patchMethodName)) != methodNames.end()) { in IsQuickFixCausedException()
266 CUnorderedSet<CString> methodNames {}; // method names are from exception stack information. in ParseStackInfo() local
272 methodNames.emplace(methodName); in ParseStackInfo()
275 return methodNames; in ParseStackInfo()
/arkcompiler/runtime_core/static_core/verification/verifier/
Dverifier.cpp99 const std::vector<std::string> &methodNames = cliOptions.GetMethods(); in RunVerifier() local
128 if (classNames.empty() && methodNames.empty()) { in RunVerifier()
208 for (const std::string &fqMethodName : methodNames) { in RunVerifier()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/
Dets_class_wrapper.cpp389 std::unordered_set<const uint8_t *> methodNames; in BuildJSProperties() local
394 ASSERT(methodNames.insert(method->GetName().data).second); in BuildJSProperties()