Home
last modified time | relevance | path

Searched refs:SplitString (Results 1 – 20 of 20) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/extractortool/src/
Dfile_path_utils.cpp75 void SplitString(const std::string& str, std::vector<std::string>& out, size_t pos, const char* sep… in SplitString() function
176 SplitString(curJsModulePath, pathVector, moduleInstallPath.length()); in MakeNewJsModulePath()
186 SplitString(newJsModuleUri, relativePathVector); in MakeNewJsModulePath()
284 SplitString(curJsModulePath, pathVector, moduleInstallPath.length()); in FindNpmPackage()
326 SplitString(newJsModuleUri, pathVector, sizeof(PREFIX_BUNDLE) - 1); in ParseOhmUri()
342 SplitString(newJsModuleUri, pathVector, sizeof(PREFIX_MODULE) - 1); in ParseOhmUri()
355 SplitString(newJsModuleUri, pathVector, sizeof(PREFIX_LOCAL) - 1); in ParseOhmUri()
Dfile_path_utils.h27 …void SplitString(const std::string& str, std::vector<std::string>& out, size_t pos = 0, const char…
/arkcompiler/ets_runtime/ecmascript/quick_fix/
Dmain.cpp102 arg_list_t fileNames = base::StringHelper::SplitString(files, ";"); in Main()
104 arg_list_t fileNames = base::StringHelper::SplitString(files, ":"); in Main()
116 arg_list_t entryList = base::StringHelper::SplitString(entry, ":"); in Main()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/
Dpgo_profiler_manager.cpp37 arg_list_t apFileNames = base::StringHelper::SplitString(inFiles, GetFileDelimiter()); in MergeApFiles()
79 arg_list_t pandaFileNames = base::StringHelper::SplitString(inFiles, GetFileDelimiter()); in MergeApFiles()
Dpgo_profiler_info.cpp100 … std::vector<std::string> infos = StringHelper::SplitString(content, DumpUtils::BLOCK_SEPARATOR); in ParseFromText()
153 …std::vector<std::string> infoStrings = StringHelper::SplitString(infoString, DumpUtils::ELEMENT_SE… in ParseFromText()
875 …std::vector<std::string> infoStrings = StringHelper::SplitString(content, DumpUtils::BLOCK_SEPARAT… in ParseFromText()
/arkcompiler/ets_runtime/ecmascript/js_vm/
Dmain.cpp58 arg_list_t fileNames = base::StringHelper::SplitString(files, ";"); in ExecutePandaFile()
60 arg_list_t fileNames = base::StringHelper::SplitString(files, ":"); in ExecutePandaFile()
/arkcompiler/toolchain/tooling/client/utils/
Dutils.h28 … static std::vector<std::string> SplitString(const std::string &str, const std::string &delimiter);
Dutils.cpp71 std::vector<std::string> Utils::SplitString(const std::string &str, const std::string &delimiter) in SplitString() function in OHOS::ArkCompiler::Toolchain::Utils
/arkcompiler/ets_runtime/ecmascript/module/
Dmodule_path_helper.cpp121 StringHelper::SplitString(recordName, vec, 0, SEGMENTS_LIMIT_TWO); in ParseUrl()
156 StringHelper::SplitString(moduleRequestName, vec, 0, SEGMENTS_LIMIT_TWO); in ParsePrefixBundle()
177 StringHelper::SplitString(moduleRequestName, currentVec, 0, SEGMENTS_LIMIT_TWO); in ParsePrefixBundle()
255 StringHelper::SplitString(requestName, vec, 0); in FindOhpmEntryPoint()
302 StringHelper::SplitString(recordName, vec, 0, SEGMENTS_LIMIT_TWO); in FindPackageInTopLevelWithNamespace()
/arkcompiler/toolchain/tooling/client/manager/
Dbreakpoint_manager.cpp50 breaksplitstring = Utils::SplitString(breakpointId, ":"); in Createbreaklocation()
/arkcompiler/ets_runtime/ecmascript/pgo_profiler/ap_file/
Dpgo_method_type_set.cpp138 …std::vector<std::string> typeInfoVector = StringHelper::SplitString(typeString, DumpUtils::TYPE_SE… in ParseFromText()
141 … std::vector<std::string> typeStrings = StringHelper::SplitString(iter, DumpUtils::BLOCK_START); in ParseFromText()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcompilation_driver.cpp211 std::vector<std::string> CompilationDriver::SplitString(const std::string &str, const char ch) const in SplitString() function in panda::ecmascript::kungfu::CompilationDriver
233 std::vector<std::string> methodNameVec = SplitString(methodNameList, comma); in ParseOption()
Daot_compiler_preprocessor.cpp109 pandaFileNames_ = base::StringHelper::SplitString(files, delimiter); in HandlePandaFileNames()
Dcompilation_driver.h340 std::vector<std::string> SplitString(const std::string &str, const char ch) const;
/arkcompiler/toolchain/tooling/client/ark_cli/
Dmain.cpp75 std::vector<std::string> cliCmdStr = Utils::SplitString(inputStr, " "); in InputOnMessage()
/arkcompiler/ets_runtime/ecmascript/base/
Dfile_header.h119 std::vector<std::string> versionNumber = StringHelper::SplitString(version, "."); in InternalSetVersion()
Dstring_helper.h382 … static std::vector<std::string> SplitString(const std::string &str, const std::string &delimiter) in SplitString() function
436 …static void SplitString(const CString& str, CVector<CString>& out, size_t startPos, size_t times =…
/arkcompiler/toolchain/tooling/test/client_utils/
Dtest_util.cpp118 std::vector<std::string> cliCmdStr = Utils::SplitString(action.message, " "); in ForkSocketClient()
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dstring_helper_test.cpp225 std::vector<std::string> resultList = StringHelper::SplitString(result, delimiter); in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/ohos/
Dohos_pkg_args.h404 …arg_list_t apFileNames = base::StringHelper::SplitString(cOptions.profilerIn_, GetFileDelimiter()); in ParseProfilerPath()