Lines Matching refs:methodId
88 auto methodId = mda.GetMethodId(); in ProcessClasses() local
89 methodIndexes.emplace_back(methodId); in ProcessClasses()
90 CollectFunctionTypeId(methodId); in ProcessClasses()
93 … vm_->GetJSThread()->GetCurrentEcmaContext()->FindOrCreateConstPool(jsPandaFile_, methodId); in ProcessClasses()
95 auto methodOffset = methodId.GetOffset(); in ProcessClasses()
103 InitializeMemory(methodLiteral, methodId); in ProcessClasses()
107 panda_file::IndexAccessor indexAccessor(*pf, methodId); in ProcessClasses()
131 pfDecoder_.MatchAndMarkMethod(recordName, name.c_str(), methodId); in ProcessClasses()
182 auto methodId = method->GetMethodId().GetOffset(); in CollectInnerFuncType() local
183 auto methodIter = methodList.find(methodId); in CollectInnerFuncType()
311 auto methodId = method->GetMethodId().GetOffset(); in CollectInnerMethods() local
312 CollectInnerMethods(methodId, innerMethodOffset, isConstructor); in CollectInnerMethods()
315 void BytecodeInfoCollector::CollectInnerMethods(uint32_t methodId, uint32_t innerMethodOffset, bool… in CollectInnerMethods() argument
319 auto methodIter = methodList.find(methodId); in CollectInnerMethods()
327 methodList.emplace(methodId, info); in CollectInnerMethods()
328 methodList.at(methodId).AddInnerMethod(innerMethodOffset, isConstructor); in CollectInnerMethods()
334 innerMethodIter->second.SetOutMethodOffset(methodId); in CollectInnerMethods()
337 MethodInfo innerInfo(GetMethodInfoID(), 0, methodInfoId, methodId); in CollectInnerMethods()
398 uint32_t methodId; in CollectMethodInfoFromBC() local
401 methodId = jsPandaFile_->ResolveMethodIndex(method->GetMethodId(), in CollectMethodInfoFromBC()
403 CollectInnerMethods(method, methodId); in CollectMethodInfoFromBC()
404 CollectInnerFuncType(method, methodId, bcIndex); in CollectMethodInfoFromBC()
409 methodId = jsPandaFile_->ResolveMethodIndex(method->GetMethodId(), in CollectMethodInfoFromBC()
411 CollectInnerMethods(method, methodId); in CollectMethodInfoFromBC()
420 methodId = entityId.GetOffset(); in CollectMethodInfoFromBC()
421 CollectInnerMethods(method, methodId, true); in CollectMethodInfoFromBC()
433 methodId = entityId.GetOffset(); in CollectMethodInfoFromBC()
434 CollectInnerMethods(method, methodId, true); in CollectMethodInfoFromBC()
804 void LexEnvManager::SetLexEnvElementType(uint32_t methodId, uint32_t level, uint32_t slot, const Ga… in SetLexEnvElementType() argument
806 uint32_t offset = GetTargetLexEnv(methodId, level); in SetLexEnvElementType()
810 GateType LexEnvManager::GetLexEnvElementType(uint32_t methodId, uint32_t level, uint32_t slot) const in GetLexEnvElementType() argument
812 uint32_t offset = GetTargetLexEnv(methodId, level); in GetLexEnvElementType()
816 uint32_t LexEnvManager::GetTargetLexEnv(uint32_t methodId, uint32_t level) const in GetTargetLexEnv() argument
818 auto offset = methodId; in GetTargetLexEnv()