/test/xts/tools/build/ |
H A D | test_package_select.py | 37 selected_subsystem = dep.split('=')[1] 40 for item in selected_subsystem.split(','):
|
/third_party/mesa3d/docs/_exts/ |
H A D | formatting.py | 10 envvar, t, default = sig.split(" ", 2) 22 opcode, desc = sig.split("-", 1)
|
/third_party/jerryscript/tests/jerry/ |
H A D | regression-test-issue-786.js | 22 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 D | test-inspect-publish-uid.js | 17 const hasHttp = argValue.split(',').includes('http'); 18 const hasStderr = argValue.split(',').includes('stderr');
|
/third_party/node/deps/v8/tools/ |
H A D | objdump-v8 | 48 pieces = line.split(None, 3) 70 addr = int(line.split()[0], 0)
|
H A D | process-wasm-compilation-times.py | 33 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.py | 103 _KEYWORD = ''.join(_KEYWORD.split()) 140 _STORAGE = 'auto register static extern'.split()
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | check-includes.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 \
|
/third_party/python/Lib/ |
H A D | _aix_support.py | 26 v, r, tl = vrmf.split(".")[:3] 41 out = out.strip().split(":") # type: ignore
|
/third_party/skia/infra/bots/buildstats/ |
H A D | buildstats_wasm.py | 44 props = propstr.split(' ') 48 keys = keystr.split(' ')
|
H A D | buildstats_web.py | 29 props = propstr.split(' ') 33 keys = keystr.split(' ')
|
/test/testfwk/developer_test/local_coverage/restore_comment/ |
H A D | build_before_generate.py | 136 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 D | unity_test_summary.py | 31 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 D | set_psa_test_dependencies.py | 218 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 D | linux_perf_report.py | 105 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 D | bash.rs | 152 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 D | Main.cpp | 198 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 D | stylize_as_junit.py | 37 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 D | unity_test_summary.py | 31 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 D | verify_assembler_traces.py | 314 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 D | simple_server.py | 24 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 D | configure.py | 930 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 D | ir3_ra_validate.c | 234 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__.py | 74 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 D | eclipse.py | 98 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)
|