Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Dtype_recorder.cpp72 auto methodIter = methodList.find(methodOffset); in LoadTypes() local
73 if (methodIter != methodList.end()) { in LoadTypes()
74 const auto &methodInfo = methodIter->second; in LoadTypes()
Dbytecode_info_collector.cpp183 auto methodIter = methodList.find(methodId); in CollectInnerFuncType() local
184 if (methodIter == methodList.end()) { in CollectInnerFuncType()
190 methodIter->second.AddBcToTypeId(bcIndex, innerFuncType); in CollectInnerFuncType()
319 auto methodIter = methodList.find(methodId); in CollectInnerMethods() local
320 if (methodIter != methodList.end()) { in CollectInnerMethods()
321 MethodInfo &methodInfo = methodIter->second; in CollectInnerMethods()
/arkcompiler/ets_runtime/ecmascript/patch/
Dpatch_loader.cpp312 auto methodIter = recordIter->second.find(baseMethodName); in FindSameMethod() local
313 if (methodIter == recordIter->second.end()) { in FindSameMethod()
318 return methodIter->second; in FindSameMethod()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_info.h952 auto methodIter = methodMap_.find(checksum); in GetOrCreateMethodInfo() local
953 if (methodIter == methodMap_.end()) { in GetOrCreateMethodInfo()
956 methodIter = ret.first; in GetOrCreateMethodInfo()
958 return methodIter->second; in GetOrCreateMethodInfo()