Home
last modified time | relevance | path

Searched refs:split (Results 301 - 325 of 3785) sorted by relevance

1...<<11121314151617181920>>...152

/test/testfwk/developer_test/src/core/testcase/
H A Dtestcase_manager.py61 testsuit_list = testsuit.split(',')
73 temp_list = suitfile_subpath.split(os.sep)
225 command_list = options.current_raw_cmd.split(" ")
269 testsuit_list = options.testsuit.split(";")
323 testsuit_list = options.testsuit.split(";")
/third_party/libsnd/Octave/
H A Dsndfile.cc377 std::vector <std::string> split ; in format_of_str() local
379 str_split (fmt, "-", split) ; in format_of_str()
381 if (split.size () != 2) in format_of_str()
384 int major_fmt = major_format_of_hash (split.at (0)) ; in format_of_str()
388 int minor_fmt = minor_format_of_hash (split.at (1)) ; in format_of_str()
/third_party/markupsafe/
H A D__init__.py122 def split( # type: ignore[override] member in Markup
125 return [self.__class__(v) for v in super().split(sep, maxsplit)]
127 split.__doc__ = str.split.__doc__
196 value = " ".join(value.split())
/third_party/mbedtls/tests/scripts/
H A Danalyze_outcomes.py80 ret_val = subprocess.run(shell_command.split(), check=False).returncode
141 (full_test_suite, test_string) = suite_case.split(';')
142 test_suite = full_test_suite.split('.')[0] # retrieve main part of test suite name
173 (_platform, component, suite, case, result, _cause) = line.split(';')
675 tasks_list = re.split(r'[, ]+', options.specified_tasks)
/third_party/node/tools/gyp/tools/
H A Dpretty_vcproj.py145 path_list = value.split(";")
169 sorted_list = sorted(value.split(";"))
226 return FixFilenames(vsprops.split(";"), os.path.dirname(filename))
302 (key, value) = argv[i].split("=")
316 vsprops.strip().split(";"), os.path.dirname(argv[1])
/third_party/node/deps/npm/node_modules/hosted-git-info/lib/
H A Dhosts.js53 let [, user, project, type, committish] = url.pathname.split('/', 5)
85 let [, user, project, aux] = url.pathname.split('/', 4)
118 const segments = path.split('/')
166 let [, user, project, aux] = url.pathname.split('/', 4)
204 let [, user, project, aux] = url.pathname.split('/', 4)
/third_party/ltp/testcases/network/nfsv4/acl/
H A Drandom_gen.py79 splitedline = line.split(':')
91 tmp = u.split('\n')
102 splitedline = line.split(':');
120 splitedline = line.split(':');
134 splitedline = line.split(':');
/third_party/python/Lib/test/
H A Dtest_shlex.py140 self.data = [x.split("|")[:-1]
142 self.posix_data = [x.split("|")[:-1]
151 l = shlex.split(data[i][0], comments=comments)
168 shlex.split(None)
257 """Test that tokens are split with types as expected."""
358 resplit = shlex.split(joined)
370 if not getattr(shlex, "split", None):
/third_party/rust/crates/version_check/src/
H A Dlib.rs99 let mut components = last_line.trim().split(" "); in version_and_date_from_rustc_version()
110 let split = |s: &str| s.splitn(2, ":").nth(1).map(|s| s.trim().to_string()); in version_and_date_from_rustc_verbose_version()
111 match line.trim().split(" ").nth(0) { in version_and_date_from_rustc_verbose_version()
117 Some("release:") => version = split(line), in version_and_date_from_rustc_verbose_version()
119 Some("commit-date:") => date = split(line), in version_and_date_from_rustc_verbose_version()
304 let allow_features = rustflags.split(delim) in supports_feature()
310 return Some(allow_features.split(',').any(|f| f.trim() == feature)); in supports_feature()
/base/global/i18n_lite/frameworks/i18n/src/
H A Dnumber_format_impl.cpp72 std::string split[NUM_PATTERN_SIZE]; in Init() local
73 Split(unprocessedNumberFormat, split, NUM_PATTERN_SIZE, NUM_PATTERN_SEP); in Init()
74 std::string decSign = split[NUM_DEC_SIGN_INDEX]; in Init()
75 std::string groupSign = split[NUM_GROUP_SIGN_INDEX]; in Init()
76 std::string perSign = split[NUM_PERCENT_SIGN_INDEX]; in Init()
87 std::string origin = split[NUM_PERCENT_PAT_INDEX]; in Init()
88 const char *pat = split[NUM_PAT_INDEX].c_str(); in Init()
/base/startup/init/services/modules/seccomp/scripts/tools/
H A Dcollect_elf_syscall.py44 elf_file_name = elf_path.split('/')[-1].split('.')[0] + suffix
49 process = subprocess.Popen(cmd.split(' '), stdout=output_file)
74 result_list = os.popen(cmd).read().split('\n')
87 for item in result.split('\n'):
100 for item in result.split('\n'):
276 file_name_tmp = file_name.split('/')[-1]
/kernel/linux/linux-5.10/arch/x86/events/zhaoxin/
H A Dcore.c522 if (eax.split.mask_length < ARCH_PERFMON_EVENTS_COUNT - 1) in zhaoxin_pmu_init()
525 version = eax.split.version_id; in zhaoxin_pmu_init()
533 x86_pmu.num_counters = eax.split.num_counters; in zhaoxin_pmu_init()
534 x86_pmu.cntval_bits = eax.split.bit_width; in zhaoxin_pmu_init()
535 x86_pmu.cntval_mask = (1ULL << eax.split.bit_width) - 1; in zhaoxin_pmu_init()
537 x86_pmu.events_mask_len = eax.split.mask_length; in zhaoxin_pmu_init()
539 x86_pmu.num_counters_fixed = edx.split.num_counters_fixed; in zhaoxin_pmu_init()
/kernel/linux/linux-5.10/scripts/
H A Dcheckkconfigsymbols.py145 split = args.diff.split("..")
146 commit_a = split[0]
147 commit_b = split[1]
198 commit = commit.split(" ", 1)
239 return [x for x in commits.split("\n") if x]
446 line = line.split("#")[0] # ignore comments
/kernel/linux/linux-6.6/arch/x86/events/zhaoxin/
H A Dcore.c522 if (eax.split.mask_length < ARCH_PERFMON_EVENTS_COUNT - 1) in zhaoxin_pmu_init()
525 version = eax.split.version_id; in zhaoxin_pmu_init()
533 x86_pmu.num_counters = eax.split.num_counters; in zhaoxin_pmu_init()
534 x86_pmu.cntval_bits = eax.split.bit_width; in zhaoxin_pmu_init()
535 x86_pmu.cntval_mask = (1ULL << eax.split.bit_width) - 1; in zhaoxin_pmu_init()
537 x86_pmu.events_mask_len = eax.split.mask_length; in zhaoxin_pmu_init()
539 x86_pmu.num_counters_fixed = edx.split.num_counters_fixed; in zhaoxin_pmu_init()
/kernel/linux/linux-6.6/scripts/
H A Dcheckkconfigsymbols.py147 split = args.diff.split("..")
148 commit_a = split[0]
149 commit_b = split[1]
200 commit = commit.split(" ", 1)
241 return [x for x in commits.split("\n") if x]
447 line = line.split("#")[0] # ignore comments
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_merge_regs.c55 * register allocation we may have to split the live interval.
120 value.offset += instr->split.off * reg_elem_size(value.reg); in chase_copies()
378 struct ir3_instruction *split) in aggressive_coalesce_split()
380 try_merge_defs(live, split->srcs[0]->def, split->dsts[0], in aggressive_coalesce_split()
381 split->split.off * reg_elem_size(split->dsts[0])); in aggressive_coalesce_split()
559 /* Second pass: aggressively coalesce parallelcopy, split, collect */ in ir3_merge_regs()
377 aggressive_coalesce_split(struct ir3_liveness *live, struct ir3_instruction *split) aggressive_coalesce_split() argument
/foundation/communication/dsoftbus/
H A Dconfig.py31 str1 = line.split('=')
44 str1 = line.split('=')
/kernel/linux/linux-5.10/tools/perf/scripts/python/
H A Dnet_dropmonitor.py28 loc = int(line.split()[0], 16)
29 name = line.split()[2]
/kernel/linux/linux-6.6/tools/perf/scripts/python/
H A Dnet_dropmonitor.py28 loc = int(line.split()[0], 16)
29 name = line.split()[2]
/test/xts/tools/build/
H A Dtest_package_select.py37 selected_subsystem = dep.split('=')[1]
40 for item in selected_subsystem.split(','):
/third_party/mesa3d/docs/_exts/
H A Dformatting.py10 envvar, t, default = sig.split(" ", 2)
22 opcode, desc = sig.split("-", 1)
/third_party/jerryscript/tests/jerry/
H A Dregression-test-issue-786.js22 try { Array.prototype.join(String.prototype.split) } catch (err) { }
24 try { isNaN.apply(Date.prototype.toISOString, String.prototype.split) } catch (err) { }
/third_party/node/test/parallel/
H A Dtest-inspect-publish-uid.js17 const hasHttp = argValue.split(',').includes('http');
18 const hasStderr = argValue.split(',').includes('stderr');
/third_party/node/deps/v8/tools/
H A Dobjdump-v848 pieces = line.split(None, 3)
70 addr = int(line.split()[0], 0)
/third_party/python/Tools/c-analyzer/c_parser/parser/
H A D_regexes.py103 _KEYWORD = ''.join(_KEYWORD.split())
140 _STORAGE = 'auto register static extern'.split()

Completed in 13 milliseconds

1...<<11121314151617181920>>...152