Home
last modified time | relevance | path

Searched refs:itemList (Results 1 - 3 of 3) sorted by relevance

/arkcompiler/ets_frontend/es2panda/aot/
H A Doptions.cpp102 void Options::CollectInputAbcFile(const std::vector<std::string> &itemList, const std::string &inputExtension) in CollectInputAbcFile() argument
104 std::string fileName = itemList[0]; in CollectInputAbcFile()
105 // Split the fileInfo string to itemList by the delimiter ';'. If the element is empty, it will not be added to in CollectInputAbcFile()
106 // the itemList. The fileInfo string of the abc file only contains the file path and pkgName, so the index in CollectInputAbcFile()
112 if (itemList.size() > PKG_NAME_IDX && compilerOptions_.mergeAbc) { in CollectInputAbcFile()
113 src.pkgName = itemList[PKG_NAME_IDX]; in CollectInputAbcFile()
118 void Options::CollectInputSourceFile(const std::vector<std::string> &itemList, const std::string &inputExtension) in CollectInputSourceFile() argument
120 std::string fileName = itemList[0]; in CollectInputSourceFile()
121 std::string recordName = compilerOptions_.mergeAbc ? itemList[1] : ""; in CollectInputSourceFile()
127 if (itemList[SCRIPT_KIND_ID in CollectInputSourceFile()
151 CheckFilesValidity(const std::string &input, const std::vector<std::string> &itemList, const std::string &line) CheckFilesValidity() argument
186 std::vector<std::string> itemList = GetStringItems(line, LIST_ITEM_SEPERATOR); CollectInputFilesFromFileList() local
234 std::vector<std::string> itemList = GetStringItems(line, LIST_ITEM_SEPERATOR); ParseCacheFileOption() local
[all...]
H A Doptions.h156 void CollectInputAbcFile(const std::vector<std::string> &itemList, const std::string &inputExtension);
157 void CollectInputSourceFile(const std::vector<std::string> &itemList, const std::string &inputExtension);
158 bool CheckFilesValidity(const std::string &input, const std::vector<std::string> &itemList,
/arkcompiler/ets_frontend/es2panda/util/
H A DsymbolTable.cpp88 auto itemList = GetStringItems(line, FIRST_LEVEL_SEPERATOR); in ReadSymbolTable() local
90 if (itemList.size() == FUNCTION_ITEM_NUMBER) { in ReadSymbolTable()
93 auto funcItems = GetStringItems(itemList[0], SECOND_LEVEL_SEPERATOR); in ReadSymbolTable()
94 auto classItems = GetStringItems(itemList[1], SECOND_LEVEL_SEPERATOR); in ReadSymbolTable()
95 auto lexItems = GetStringItems(itemList[2], SECOND_LEVEL_SEPERATOR); in ReadSymbolTable()
120 } else if (itemList.size() == MODULE_ITEM_NUMBER) { in ReadSymbolTable()
122 auto moduleItems = GetStringItems(itemList[0], SECOND_LEVEL_SEPERATOR); in ReadSymbolTable()

Completed in 2 milliseconds