Lines Matching full:entrypoint
55 std::string_view entryPoint, bool needUpdate) in LoadJSPandaFile() argument
83 return GenerateJSPandaFile(thread, pf.release(), filename, entryPoint); in LoadJSPandaFile()
87 std::string_view entryPoint, const void *buffer, size_t size, bool needUpdate) in LoadJSPandaFile() argument
118 return GenerateJSPandaFile(thread, pf.release(), filename, entryPoint); in LoadJSPandaFile()
122 EcmaVM *vm, const JSPandaFile *jsPandaFile, std::string_view entryPoint) in GenerateProgram() argument
129 return PandaFileTranslator::GenerateProgram(vm, jsPandaFile, entryPoint); in GenerateProgram()
285 … const CString &desc, std::string_view entryPoint) in GenerateJSPandaFile() argument
296 CString methodName = entryPoint.data(); in GenerateJSPandaFile()
298 // entryPoint maybe is _GLOBAL::func_main_watch to execute func_main_watch in GenerateJSPandaFile()
299 auto pos = entryPoint.find_last_of("::"); in GenerateJSPandaFile()
301 methodName = entryPoint.substr(pos + 1); in GenerateJSPandaFile()
303 // default use func_main_0 as entryPoint in GenerateJSPandaFile()