Home
last modified time | relevance | path

Searched refs:sep (Results 1 – 25 of 56) sorted by relevance

123

/developtools/profiler/device/plugins/ftrace_plugin/src/
Dstring_utils.cpp54 std::string StringUtils::Join(const std::vector<std::string>& strs, const std::string& sep) in Join() argument
59 result += sep; in Join()
61 if (result.size() > sep.size()) { in Join()
62 result.resize(result.size() - sep.size()); in Join()
67 std::vector<std::string> StringUtils::Split(const std::string& str, const std::string& sep) in Split() argument
70 if (str.empty() || sep.empty() || str.size() < sep.size()) { in Split()
76 pos = str.find(sep, start); in Split()
79 start = pos + sep.size(); // next start index in Split()
/developtools/profiler/device/plugins/ftrace_plugin/include/
Dstring_utils.h27 static std::string Join(const std::vector<std::string>& strs, const std::string& sep);
28 static std::vector<std::string> Split(const std::string& str, const std::string& sep);
/developtools/ace_ets2bundle/compiler/src/
Dpre_define.ts272 export const MODULE_SHARE_PATH: string = 'src' + path.sep + 'main' + path.sep + 'ets' + path.sep + …
274 export const MODULE_ETS_PATH: string = 'src' + path.sep + 'main' + path.sep + 'ets';
275 export const MODULE_VISUAL_PATH: string = 'src' + path.sep + 'main' + path.sep + 'supervisual';
/developtools/integration_verification/cases/smoke/basic/screenshot32/xdevice_smoke/APL_compare_03/
Dapl_config.py20 PATH = os.path.dirname(os.path.realpath(__file__)) + os.sep
Dread_excel.py21 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
Dread_device.py21 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
/developtools/integration_verification/cases/smoke/basic/screenshot32/APL_compare_03/
Dapl_config.py20 PATH = os.path.dirname(os.path.realpath(__file__)) + os.sep
Dread_device.py21 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
Dread_excel.py21 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
/developtools/integration_verification/cases/smoke/basic/screenshot32/acls_check/
Dconfig.py19 SYS_SEQ = os.sep
Dread_acl_whitelist.py17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
Dutils.py20 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
Dresolve_token_info.py17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
Dacl_check.py17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
/developtools/integration_verification/cases/smoke/basic/screenshot32/xdevice_smoke/acls_check/
Dconfig.py19 SYS_SEQ = os.sep
Dread_acl_whitelist.py17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
Dresolve_token_info.py17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
Dacl_check.py17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
/developtools/integration_verification/DeployDevice/src/util/
Dfind_fail_task.py23 items = dir_path.split(os.sep)
/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/src/
Drom_analysis.py88 if (not sub_path) or (os.sep not in sub_path):
91 t, sub_sub_path = sub_path.split(os.sep, 1) # 如果是c/e,分割成c,e
135 if os.sep in v:
195 tbl = [x for x in exclude_dir if os.sep in x]
223 gn = g.split(':')[0].replace(project_path, "").lstrip(os.sep)
/developtools/profiler/device/base/include/
Dcommon.h38 void SplitString(const std::string& str, const std::string &sep, std::vector<std::string>& ret);
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/
Dtransform.ts80 …eSourceFilePath = toUnixPath(sourceFilePath.replace(projectConfig.projectRootPath + path.sep, ''));
/developtools/hiperf/script/
Drecv_binary_cache.py112 target_file = target_file.replace('/', os.sep)
129 binary_cache_file = binary[1:].replace('/', os.sep)
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/module/
Dmodule_hotreload_mode.test.ts68 … toUnixPath(filePath.replace(this.rollup.share.projectConfig.projectTopDir + path.sep, ''));
/developtools/profiler/device/base/src/
Dcommon.cpp391 void SplitString(const std::string& str, const std::string &sep, std::vector<std::string>& ret) in SplitString() argument
397 std::string::size_type beginPos = str.find_first_not_of(sep); in SplitString()
400 findPos = str.find(sep, beginPos); in SplitString()
404 beginPos = findPos + sep.length(); in SplitString()

123