/developtools/profiler/device/plugins/ftrace_plugin/src/ |
D | string_utils.cpp | 54 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/ffrt_profiler/service/src/ |
D | ffrt_profiler_common.cpp | 21 void SplitString(const std::string& str, const std::string &sep, std::vector<std::string>& ret) in SplitString() argument 27 std::string::size_type beginPos = str.find_first_not_of(sep); in SplitString() 30 findPos = str.find(sep, beginPos); in SplitString() 34 beginPos = findPos + sep.length(); in SplitString()
|
/developtools/profiler/device/plugins/network_profiler/service/src/ |
D | network_profiler_common.cpp | 21 void SplitParamValue(const std::string& str, const std::string &sep, std::vector<std::string>& ret) in SplitParamValue() argument 27 std::string::size_type beginPos = str.find_first_not_of(sep); in SplitParamValue() 30 findPos = str.find(sep, beginPos); in SplitParamValue() 34 beginPos = findPos + sep.length(); in SplitParamValue()
|
/developtools/profiler/device/plugins/ftrace_plugin/include/ |
D | string_utils.h | 27 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/hdc/hdc_rust/src/cffi/ |
D | utils.cpp | 47 const char sep = '\\'; in GetPathSep() local 49 const char sep = '/'; in GetPathSep() 51 return sep; in GetPathSep()
|
/developtools/ace_ets2bundle/compiler/src/ |
D | pre_define.ts | 284 export const MODULE_SHARE_PATH: string = 'src' + path.sep + 'main' + path.sep + 'ets' + path.sep + … 286 export const MODULE_ETS_PATH: string = 'src' + path.sep + 'main' + path.sep + 'ets'; 287 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/ |
D | apl_config.py | 20 PATH = os.path.dirname(os.path.realpath(__file__)) + os.sep
|
D | read_excel.py | 21 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
|
/developtools/integration_verification/cases/smoke/basic/screenshot32/APL_compare_03/ |
D | apl_config.py | 20 PATH = os.path.dirname(os.path.realpath(__file__)) + os.sep
|
D | read_excel.py | 21 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
|
/developtools/integration_verification/cases/smoke/basic/screenshot32/acls_check/ |
D | config.py | 19 SYS_SEQ = os.sep
|
D | read_acl_whitelist.py | 17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
|
D | resolve_token_info.py | 17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
|
D | acl_check.py | 17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
|
/developtools/integration_verification/cases/smoke/basic/screenshot32/xdevice_smoke/acls_check/ |
D | config.py | 19 SYS_SEQ = os.sep
|
D | read_acl_whitelist.py | 17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
|
D | resolve_token_info.py | 17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
|
D | acl_check.py | 17 sys.path.append(os.path.dirname(os.path.realpath(__file__)) + os.sep)
|
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/ |
D | generate_sourcemap.ts | 90 return moduleId.replace(/\//g, path.sep); 115 let middlePath = this.getIntermediateModuleId(moduleId.replace(pkgPath + path.sep, '')); 338 projectConfig.projectRootPath + path.sep, '')); 342 const moduleId: string = this.projectConfig.projectRootPath + path.sep + key;
|
/developtools/profiler/device/plugins/network_profiler/service/include/ |
D | network_profiler_common.h | 27 void SplitParamValue(const std::string& str, const std::string &sep, std::vector<std::string>& ret);
|
/developtools/profiler/device/plugins/ffrt_profiler/service/include/ |
D | ffrt_profiler_common.h | 28 void SplitString(const std::string& str, const std::string &sep, std::vector<std::string>& ret);
|
/developtools/integration_verification/DeployDevice/src/util/ |
D | find_fail_task.py | 23 items = dir_path.split(os.sep)
|
/developtools/integration_verification/tools/rom_ram_analyzer/lite_small/src/ |
D | rom_analysis.py | 131 if (not sub_path) or (os.sep not in sub_path): 134 t, sub_sub_path = sub_path.split(os.sep, 1) # 如果是c/e,分割成c,e 178 if os.sep in v: 230 tbl = [x for x in exclude_dir if os.sep in x] 258 gn = g.split(':')[0].replace(project_path, "").lstrip(os.sep)
|
/developtools/ace_ets2bundle/compiler/test/ark_compiler_ut/bundle/ |
D | bundle_mode.test.ts | 216 bundleMode.projectConfig.projectRootPath + path.sep, '')); 217 const buildDirArr: string[] = bundleMode.projectConfig.aceModuleBuild.split(path.sep);
|
/developtools/profiler/device/base/include/ |
D | common.h | 38 void SplitString(const std::string& str, const std::string &sep, std::vector<std::string>& ret);
|