Home
last modified time | relevance | path

Searched refs:methodIter (Results 1 – 5 of 5) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dtype_recorder.cpp75 auto methodIter = methodList.find(methodOffset); in LoadTypes() local
76 if (methodIter != methodList.end()) { in LoadTypes()
77 const auto &methodInfo = methodIter->second; in LoadTypes()
Dbytecode_info_collector.cpp257 auto methodIter = methodList.find(methodId); in CollectInnerFuncType() local
258 if (methodIter == methodList.end()) { in CollectInnerFuncType()
264 methodIter->second.AddBcToTypeId(bcIndex, innerFuncType); in CollectInnerFuncType()
397 auto methodIter = methodList.find(methodId); in CollectInnerMethods() local
398 if (methodIter != methodList.end()) { in CollectInnerMethods()
399 MethodInfo &methodInfo = methodIter->second; in CollectInnerMethods()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_info.h393 auto methodIter = methodMap_.find(checksum); in GetOrCreateMethodInfo() local
394 if (methodIter == methodMap_.end()) { in GetOrCreateMethodInfo()
397 methodIter = ret.first; in GetOrCreateMethodInfo()
399 return methodIter->second; in GetOrCreateMethodInfo()
/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp338 auto methodIter = patchMethodLiterals.find(patchMethodIndex); in FindSameMethod() local
339 if (methodIter == patchMethodLiterals.end()) { in FindSameMethod()
345 return methodIter->second; in FindSameMethod()
/arkcompiler/runtime_core/static_core/disassembler/
Ddisassembler.cpp207 const auto methodIter = progAnn_.methodAnnotations.find(signature); in Serialize() local
208 if (methodIter != progAnn_.methodAnnotations.end()) { in Serialize()
209 Serialize(*method.metadata, methodIter->second, headerSs); in Serialize()