Home
last modified time | relevance | path

Searched refs:split (Results 226 - 250 of 2986) sorted by relevance

12345678910>>...120

/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)
H A Dprocess-wasm-compilation-times.py33 parts = raw.split("#")
40 parts = raw.split("#")
111 words = line.strip().split(" ")
/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()
/third_party/skia/third_party/externals/harfbuzz/src/
H A Dcheck-includes.py7 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 \
/third_party/python/Lib/
H A D_aix_support.py26 v, r, tl = vrmf.split(".")[:3]
41 out = out.strip().split(":") # type: ignore
/third_party/skia/infra/bots/buildstats/
H A Dbuildstats_wasm.py44 props = propstr.split(' ')
48 keys = keystr.split(' ')
H A Dbuildstats_web.py29 props = propstr.split(' ')
33 keys = keystr.split(' ')
/test/testfwk/developer_test/local_coverage/restore_comment/
H A Dbuild_before_generate.py136 part_name_list = part_name.strip().split(" -tp ")[1].split()
142 root_path = current_path.split("/test/testfwk/developer_test")[0]
/third_party/cJSON/tests/unity/auto/
H A Dunity_test_summary.py31 lines = list(map(lambda line: line.rstrip(), open(result_file, "r").read().split('\n')))
88 parts = line.split(':')
133 root_path = os.path.split(__file__)[0]
/third_party/mbedtls/tests/scripts/
H A Dset_psa_test_dependencies.py218 arguments = content_matches[-1].group(0).split(':')
234 old_dependencies = dependencies_match.group(0).split(':')
257 old_stanzas = old_content.split('\n\n')
/third_party/node/deps/v8/tools/ignition/
H A Dlinux_perf_report.py105 symbol = line.split(" ", 1)[1].split("+", 1)[0]
160 return handler if handler[0] == "[" else handler.split(":", 1)[1]
/third_party/rust/crates/clap/clap_complete/src/shells/
H A Dbash.rs152 level = sc.split("__").map(|_| 1).sum::<u64>(), in subcommand_details()
163 let p = utils::find_subcommand_with_path(cmd, path.split("__").skip(1).collect()); in option_details_for_path()
217 let p = utils::find_subcommand_with_path(cmd, path.split("__").skip(1).collect()); in all_options_for_path()
/third_party/skia/src/sksl/lex/
H A DMain.cpp198 std::istringstream split(line); in process()
200 if (split >> name >> delimiter >> pattern) { in process()
201 SkASSERT(split.eof()); in process()
/third_party/unity/auto/
H A Dstylize_as_junit.py37 lines = list(map(lambda line: line.rstrip(), open(result_file, "r").read().split('\n')))
84 file_name = tmp_tc_line['tc_file_name'].split('\\').pop().split('/').pop().rsplit('.', 1)[0]
140 default='os.path.split(__file__)[0]',
H A Dunity_test_summary.py31 lines = list(map(lambda line: line.rstrip(), open(result_file, "r").read().split('\n')))
88 parts = line.split(':')
133 root_path = os.path.split(__file__)[0]
/third_party/vixl/tools/
H A Dverify_assembler_traces.py314 for instruction in vixl_instruction.split(';'):
360 (m.group('instruction'), m.group('encoding').replace(" ", "").split(","))
395 match_object.group('encoding').replace(" ", "").split(",")
/third_party/python/Lib/wsgiref/
H A Dsimple_server.py24 sys_version = python_implementation() + "/" + sys.version.split()[0]
35 self.status.split(' ',1)[0], self.bytes_sent
81 path,query = self.path.split('?',1)
/third_party/node/
H A Dconfigure.py930 proc = subprocess.Popen(shlex.split(pkg_config) + args,
945 proc = subprocess.Popen(shlex.split(cc) + ['-E', '-P', '-x', lang, '-'],
955 values = (to_utf8(proc.communicate()[0]).split('\n')[-2].split() + ['0'] * 7)[0:7]
957 values = (to_utf8(proc.communicate()[0]).split() + ['0'] * 7)[0:7]
974 proc = subprocess.Popen(shlex.split(cc) + ['-v'], stdin=subprocess.PIPE,
990 proc = subprocess.Popen(shlex.split(asm) + ['-v'],
1017 proc = subprocess.Popen(shlex.split(cc) + ['-Wa,-v', '-c', '-o',
1090 p = subprocess.Popen(shlex.split(cc or CC) + ['-dM', '-E', '-'],
1103 out = to_utf8(p.communicate()[0]).split('\
[all...]
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_ra_validate.c234 propagate_split(struct ra_val_ctx *ctx, struct ir3_instruction *split) in propagate_split() argument
236 struct ir3_register *dst = split->dsts[0]; in propagate_split()
237 struct ir3_register *src = split->srcs[0]; in propagate_split()
242 unsigned offset = split->split.off * reg_elem_size(src); in propagate_split()
372 unsigned offset = instr->split.off * reg_elem_size(new_def); in chase_definition()
/third_party/node/tools/gyp/pylib/gyp/
H A D__init__.py74 format, params["flavor"] = format.split("-", 1)
88 path, generator_name = os.path.split(generator_name)
176 tokens = item.split("=", 1)
194 flags = shlex.split(flags)
503 generate_formats = re.split(r"[\s,]", generate_formats)
550 build_file_dir_components = build_file_dir.split(os.path.sep)
/third_party/node/tools/gyp/pylib/gyp/generator/
H A Declipse.py98 command = shlex.split(compiler_path)
228 split_define = define.split("=", 1)
239 command = shlex.split(compiler_path)
245 cpp_lines = cpp_output.split("\n")
249 cpp_line_parts = cpp_line.split(" ", 2)
441 parent_search, _ = os.path.split(parent_search)

Completed in 11 milliseconds

12345678910>>...120