/third_party/python/Tools/scripts/ |
H A D | texi2html.py | 30 # -split split at chapters or sections instead of nodes 701 args = [s.strip() for s in text.split(',')] 709 args = [s.strip() for s in text.split(',')] 725 args = [s.strip() for s in text.split(',')] 745 args = [s.strip() for s in text.split(',')] 900 words = args.split() 944 fields = args.split(' ') 1047 parts = [s.strip() for s in args.split(',')] 1564 words = args.split() [all...] |
/third_party/vk-gl-cts/android/cts/runner/src/com/drawelements/deqp/runner/ |
H A D | DeqpTestRunner.java | 111 // !NOTE: There's a static method copyOptions() for copying options during split. 730 final String parts[] = line.substring(24).split("=",2); in processNewLines() 985 final String[] lines = processes.split("(\\r|\\n)+"); in getDeqpProcessPids() 987 final String[] fields = line.split("\\s+"); in getDeqpProcessPids() 1057 Paths.get(testlist.getParent(), testName.split("/")).toFile(), in addTestsToInstancesMap() 1117 String[] components = test.split("\\."); in generateTestCaseTrieFromPaths() 1135 String[] components = test.split("\\."); in generateTestCaseTrieFromPaths() 1438 // split remaining tests to two sub batches and execute both. This will terminate in executeTestRunBatch() 1927 for (String feature: commandOutput.split("\\s+")) { in queryDeviceFeatures() 1930 String[] tokens = feature.split(" in queryDeviceFeatures() 2487 public Collection<IRemoteTest> split() { split() method in DeqpTestRunner [all...] |
/third_party/ntfs-3g/ntfsprogs/ |
H A D | ntfssecaudit.c | 117 * - split the code to have part of it shared with ntfs-3g library 6048 static BOOL splitarg(char **split, const char *arg) in splitarg() argument 6105 split[0] = volume; in splitarg() 6106 split[1] = filename; in splitarg() 6234 char *split[2]; in main() local 6247 split[0] = split[1] = (char*)NULL; in main() 6270 if (!splitarg(split, argv[xarg])) in main() 6271 fail = backup(split[0], split[ in main() [all...] |
/third_party/mesa3d/src/nouveau/codegen/ |
H A D | nv50_ir_ra.cpp | 409 // Critical edges need to be split up so that work can be inserted along 949 // split b64 { $r0 $r1 } $r0d / mov b64 $r0d f64 $r2d 1095 GCRA::makeCompound(Instruction *insn, bool split) in makeCompound() argument 1097 LValue *rep = (split ? insn->getSrc(0) : insn->getDef(0))->asLValue(); in makeCompound() 1100 INFO("makeCompound(split = %i): ", split); in makeCompound() 1111 for (int c = 0; split ? insn->defExists(c) : insn->srcExists(c); ++c) { in makeCompound() 1112 LValue *val = (split ? insn->getDef(c) : insn->getSrc(c))->asLValue(); in makeCompound() 1983 Instruction *split = *it; in resolveSplitsAndMerges() local 1984 unsigned int reg = regs.idToBytes(split in resolveSplitsAndMerges() 2153 Instruction *split = new_Instruction(func, OP_SPLIT, typeOfSize(size)); condenseDefs() local [all...] |
H A D | nv50_ir_from_nir.cpp | 1270 Value *split[2]; in storeTo() local 1271 mkSplit(split, 4, src); in storeTo() 1274 split[0] = mkMov(getSSA(), split[0], ty)->getDef(0); in storeTo() 1275 split[1] = mkMov(getSSA(), split[1], ty)->getDef(0); in storeTo() 1279 split[0])->perPatch = info_out->out[idx].patch; in storeTo() 1281 split[1])->perPatch = info_out->out[idx].patch; in storeTo() 2400 Value *split[2]; 2401 mkSplit(split, [all...] |
/third_party/icu/icu4c/source/test/intltest/ |
H A D | regextst.cpp | 1615 n = pat1->split("Now is the time", fields, 10, status); in API_Pattern() 1624 n = pat1->split("Now is the time", fields, 2, status); in API_Pattern() 1633 n = pat1->split("Now is the time", fields, 1, status); in API_Pattern() 1640 n = pat1->split(" Now is the time ", fields, 10, status); in API_Pattern() 1650 n = pat1->split(" ", fields, 10, status); in API_Pattern() 1657 n = pat1->split("", fields, 10, status); in API_Pattern() 1664 // split, with a pattern with (capture) in API_Pattern() 1669 n = pat1->split("<a>Now is <b>the time<c>", fields, 10, status); in API_Pattern() 1681 n = pat1->split(" <a>Now is <b>the time<c>", fields, 10, status); in API_Pattern() 1694 n = pat1->split(" < in API_Pattern() [all...] |
/third_party/python/Lib/test/ |
H A D | test_traceback.py | 1316 blocks = boundaries.split(self.get_report(outer_raise)) 1330 blocks = boundaries.split(self.get_report(outer_raise)) 1365 blocks = boundaries.split(self.get_report(outer_raise)) 1383 blocks = boundaries.split(self.get_report(outer_raise)) 1989 report = '\n'.join([l.rstrip() for l in report.split('\n')]) 2664 output.getvalue().split('\n')[-5:], 2718 formatted = ''.join(teg.format_exception_only()).split('\n') 2719 expected = "ExceptionGroup: eg2 (2 sub-exceptions)\n".split('\n') 2726 formatted = ''.join(teg.format()).split('\n') 2780 formatted = ''.join(teg.format()).split('\ [all...] |
H A D | test_wsgiref.py | 109 sys.version.split()[0]) 204 ver = sys.version.split()[0].encode('ascii') 440 ).split(): 447 ).split():
|
/kernel/linux/linux-6.6/tools/perf/pmu-events/ |
H A D | jevents.py | 248 return msrmap[int(num.split(',', 1)[0], 0)] 297 eventcode = int(jd['EventCode'].split(',', 1)[0], 0) 1170 if len(parents) == _args.model.split(',')[0].count('/'): 1173 if 'test' not in item_path and item_path not in _args.model.split(','):
|
/third_party/mesa3d/src/freedreno/ir3/ |
H A D | ir3_sched.c | 102 struct ir3_instruction *split; /* most-recently-split a0/a1/p0 producer */ member 194 /* meta:split/collect aren't real instructions, the thing that in sched_check_src_cond() 421 if (instr == ctx->split) { in check_instr() 835 * - split should be scheduled first, so that the vector value is in choose_instr_prio() 836 * killed as soon as possible. RA cannot split up the vector and in choose_instr_prio() 906 di(new_instr, "split instruction"); in split_instr() 1242 * schedule any split instruction created by the scheduler again. in sched_block() 1244 ctx->split = NULL; in sched_block() 1279 ctx->split in sched_block() [all...] |
/third_party/littlefs/scripts/ |
H A D | cov.py | 116 a, b = a.split('/', 1) 750 type=lambda x: (lambda k,v: (k, set(v.split(','))))(*x.split('=', 1)), 823 type=lambda x: x.split(),
|
H A D | code.py | 657 type=lambda x: (lambda k,v: (k, set(v.split(','))))(*x.split('=', 1)), 695 type=lambda x: x.split(), 701 type=lambda x: x.split(),
|
H A D | data.py | 654 type=lambda x: (lambda k,v: (k, set(v.split(','))))(*x.split('=', 1)), 692 type=lambda x: x.split(), 698 type=lambda x: x.split(),
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
H A D | android.py | 279 dir = os.path.split(out)[0] 381 (rule_source_dirname, rule_source_basename) = os.path.split(rule_source) 484 filename = os.path.split(path)[1] 671 """Return the 'output basename' of a gyp spec, split into filename + ext. 800 for lib in libs.split():
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
H A D | android.py | 279 dir = os.path.split(out)[0] 381 (rule_source_dirname, rule_source_basename) = os.path.split(rule_source) 484 filename = os.path.split(path)[1] 671 """Return the 'output basename' of a gyp spec, split into filename + ext. 800 for lib in libs.split():
|
/third_party/python/Lib/test/libregrtest/ |
H A D | main.py | 236 line = line.split('#', 1)[0] 379 short_name = test_full_name.split(" ")[0] 390 return test_full_name[lpar + 1: rpar].split('.')[-1] 518 print("==", platform.python_implementation(), *sys.version.split())
|
/third_party/python/Lib/ |
H A D | smtpd.py | 376 for text in line.split(self._linesep): 538 self.mail_options = params.upper().split() 592 self.rcpt_options = params.upper().split() 745 lines = data.split('\n') 836 # split into host/port pairs
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | extensionmetadocgenerator.py | 280 if self.conventions.xml_api_name in self.ratified.split(','): 371 specialuses = self.specialuse.split(',') 392 contacts = self.contact.split(',') 394 contactWords = contact.strip().split()
|
/third_party/skia/src/image/ |
H A D | SkImage.cpp | 633 std::string split(depth, '\t'); in dump() 634 desc += split + "\n SkImage:{ \n"; in dump() 636 desc += split + "\t fUniqueID: " + std::to_string(fUniqueID) + "\n"; in dump() 637 desc += split + "}\n"; in dump()
|
/third_party/python/Lib/distutils/ |
H A D | dist.py | 328 for line in out.split('\n'): 618 value = [elm.strip() for elm in value.split(',')] 801 pkgs = [pkg.strip() for pkg in pkgs.split(',') if pkg != ''] 1097 self.keywords = _read_field('keywords').split(',')
|
/third_party/skia/infra/bots/gen_tasks_logic/ |
H A D | dm_flags.go | 546 split := strings.Split(tf, "_") 547 if len(split) == 3 { 548 args = append(args, "--shard", split[1]) 549 args = append(args, "--shards", split[2])
|
/third_party/node/deps/v8/src/compiler/backend/ |
H A D | register-allocator.cc | 538 // If we split, we do so because we're about to switch registers or move in SplitAt() 556 // split that interval and use the first part. in DetachAt() 559 // If the split position coincides with the beginning of a use interval in DetachAt() 560 // we need to split use positons in a special way. in DetachAt() 589 ? after // Only interval in the range after split. in DetachAt() 594 // Find the last use position before the split and the first use in DetachAt() 599 // The split position coincides with the beginning of a use interval (the in DetachAt() 601 // the split child because split child owns use interval covering it. in DetachAt() 2588 // New LiveRanges should not be split in Verify() 3094 LiveRange* split = SplitRangeAt(active_range, position); SpillNotLiveRanges() local 3144 LiveRange* split = SplitRangeAt(active_range, position); SpillNotLiveRanges() local 3245 LiveRange* split = SplitRangeAt(to_resurrect, position); ReloadLiveRanges() local [all...] |
/drivers/hdf_core/framework/tools/hdf_dev_eco_tool/command_line/ |
H A D | hdf_lite_mk_file.py | 78 parts = vendor_drivers_path.split('/')
|
/drivers/peripheral/audio/test/sample/tools/gen_cr_by_pr/ |
H A D | gen_cr_by_pr.py | 104 path = url.split('/')[-3:]
|
/kernel/linux/linux-5.10/Documentation/arm/samsung/ |
H A D | clksrc-change-registers.awk | 24 r = split(l, tp)
|