Home
last modified time | relevance | path

Searched refs:bufferIdx (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
DmoduleRecordEmitter.h27 explicit ModuleRecordEmitter(parser::SourceTextModuleRecord *moduleRecord, int32_t bufferIdx) in ModuleRecordEmitter() argument
28 : moduleRecord_(moduleRecord), bufferIdx_(bufferIdx) {} in ModuleRecordEmitter()
/arkcompiler/ets_frontend/es2panda/util/
DpatchFix.cpp170 int64_t bufferIdx = GetLiteralIdxFromStringId(ins.ids[0]); in GenerateFunctionAndClassHash() local
171 ss << ExpandLiteral(bufferIdx, literalBuffers) << " "; in GenerateFunctionAndClassHash()
174 int64_t bufferIdx = GetLiteralIdxFromStringId(ins.ids[1]); in GenerateFunctionAndClassHash() local
175 std::string literalStr = ExpandLiteral(bufferIdx, literalBuffers); in GenerateFunctionAndClassHash()
178 CollectClassMemberFunctions(ins.ids[0], bufferIdx, literalBuffers); in GenerateFunctionAndClassHash()
216 std::string PatchFix::ExpandLiteral(int64_t bufferIdx, PatchFix::LiteralBuffers &literalBuffers) in ExpandLiteral() argument
219 if (litPair.first == bufferIdx) { in ExpandLiteral()
227 std::vector<std::string> PatchFix::GetLiteralMethods(int64_t bufferIdx, PatchFix::LiteralBuffers &l… in GetLiteralMethods() argument
231 if (litPair.first != bufferIdx) { in GetLiteralMethods()
251 void PatchFix::CollectClassMemberFunctions(const std::string &className, int64_t bufferIdx, in CollectClassMemberFunctions() argument
[all …]
DpatchFix.h95 std::string ExpandLiteral(int64_t bufferIdx, LiteralBuffers &literalBuffers);
107 …void CollectClassMemberFunctions(const std::string &className, int64_t bufferIdx, LiteralBuffers &…
108 std::vector<std::string> GetLiteralMethods(int64_t bufferIdx, LiteralBuffers &literalBuffers);