/third_party/rust/crates/version_check/src/ |
H A D | version.rs | 58 let splits = version.split('-') in parse() 61 .split('.') in parse() 65 for (i, split) in splits.enumerate() { in parse() 66 mmp[i] = match (i, split) { in parse()
|
/third_party/vk-gl-cts/scripts/verify/ |
H A D | verify.py | 113 assert len(line.split()) >= 2 114 package.conformVersion = line.split()[1] 127 assert len(line.split()) >= 2 128 package.conformOs = line.split()[1]
|
/test/xts/acts/pcs/pcs_py/ |
H A D | testSDCardMount.py | 39 sdCardList.append(mountItem.split()[0]) 40 rmountResult = self.device1.execute_shell_command("umount " + mountItem.split()[-1])
|
/third_party/PyYAML/tests/lib/ |
H A D | test_mark.py | 6 inputs = file.read().split('---\n')[1:] 24 data, pointer = snippet.split('\n')
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/ |
H A D | conf.py | 67 release = next(open('../Makefile', 'r')).split('=')[1].rstrip() 69 version = release.split('-')[0]
|
/third_party/python/Lib/importlib/metadata/ |
H A D | _text.py | 26 >>> s.split('O') 97 def split(self, splitter=' ', maxsplit=0): member in FoldedCase 99 return pattern.split(self, maxsplit)
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | check-c-linkage-decls.py | 7 HBHEADERS = [os.path.basename (x) for x in os.getenv ('HBHEADERS', '').split ()] or \ 9 HBSOURCES = [os.path.basename (x) for x in os.getenv ('HBSOURCES', '').split ()] or \
|
H A D | check-header-guards.py | 7 HBHEADERS = [os.path.basename (x) for x in os.getenv ('HBHEADERS', '').split ()] or \ 9 HBSOURCES = [os.path.basename (x) for x in os.getenv ('HBSOURCES', '').split ()] or \
|
H A D | gen-os2-unicode-ranges.py | 26 fields = re.split(r'\t+', line) 34 ranges = re.split("-", fields[1])
|
/third_party/skia/tools/ |
H A D | bloaty_treemap.py | 17 # TODO: Support aggregation by scope, rather than file (split C++ identifiers on '::') 39 head = os.path.split(path)[0] 68 vals = line.rstrip().split("\t")
|
/third_party/skia/tools/malisc/ |
H A D | malisc.py | 37 inst = line.split(':')[1].split()
|
/kernel/linux/linux-5.10/arch/x86/events/zhaoxin/ |
H A D | core.c | 522 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 D | checkkconfigsymbols.py | 145 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
|
H A D | bpf_helpers_doc.py | 52 args = capture.group(4).split(', ') 388 for line in re.sub('\n$', '', helper.desc, count=1).split('\n'): 393 for line in helper.ret.rstrip().split('\n'): 543 for line in re.sub('\n$', '', helper.desc, count=1).split('\n'): 549 for line in helper.ret.rstrip().split('\n'):
|
/kernel/linux/linux-6.6/arch/x86/events/zhaoxin/ |
H A D | core.c | 522 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 D | checkkconfigsymbols.py | 147 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 D | ir3_merge_regs.c | 55 * 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
|
/test/testfwk/developer_test/src/core/testcase/ |
H A D | testcase_manager.py | 61 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 D | sndfile.cc | 377 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__.py | 122 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 D | analyze_outcomes.py | 80 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 D | pretty_vcproj.py | 145 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 D | hosts.js | 53 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 D | random_gen.py | 79 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 D | test_shlex.py | 140 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):
|