Home
last modified time | relevance | path

Searched refs:strip (Results 426 - 450 of 924) sorted by relevance

1...<<11121314151617181920>>...37

/third_party/skia/third_party/externals/angle2/tools/android/modularization/convenience/
H A Dlookup_dep.py215 source_path = pathlib.Path(source_line.strip())
269 return [s.strip() for s in f.readlines()]
/third_party/python/Lib/test/
H A Dtest_tabnanny.py337 ).strip()
345 ).strip()
H A Dtest_faulthandler.py63 code = dedent(code).strip()
382 modules = set(match.group(1).strip().split(', '))
587 regex = dedent(regex.format(lineno=lineno)).strip()
/third_party/python/Lib/idlelib/idle_test/
H A Dtest_textview.py227 self.assertEqual(get('1.0', '1.end'), f.readline().strip())
229 self.assertEqual(get('3.0', '3.end'), f.readline().strip())
/third_party/skia/tools/
H A Dcompare_codereview.py134 bot = self._anchor_data.strip()
262 result = self._li_data.strip()
/third_party/rust/crates/minimal-lexical/etc/correctness/test-parse-random/
H A Druntests.py391 send_error_to_supervisor(text.strip(), "wrongly rounded to", descr)
405 text = text.strip()
/third_party/vk-gl-cts/scripts/
H A Dtestset.py62 case = line[6:].strip()
120 group = line.strip()
/third_party/json/tools/cpplint/
H A Dcpplint.py918 _hpp_headers = {ext.strip() for ext in val.split(',')}
950 extensions = [ext.strip() for ext in val.split(',')]
1319 clean_filt = filt.strip()
1849 if lines[lineix].strip().startswith('/*'):
1851 if lines[lineix].strip().find('*/', 2) < 0:
1860 if lines[lineix].strip().endswith('*/'):
3406 constructor_args[0].strip() == 'void'))
3423 % re.escape(base_classname), constructor_args[0].strip()))
4731 lhs = lhs.strip()
4732 rhs = rhs.strip()
[all...]
/kernel/linux/linux-5.10/tools/power/pm-graph/
H A Dsleepgraph.py364 out = ascii(fp.read()).strip()
443 v = open('/proc/version', 'r').read().strip()
464 if i.strip():
465 out.append(i.strip())
481 nowtime = open(self.rtcpath+'/since_epoch', 'r').read().strip()
526 i = i.strip()
977 idv = ascii(fp.read()).strip()
979 idp = ascii(fp.read()).strip()
982 out = props[dev].altname.strip().replace('\n', ' ')\
1019 line = line.strip()
[all...]
/test/testfwk/xdevice/plugins/ohos/src/ohos/environment/
H A Ddmlib.py353 items = line.strip().split('\t')
362 LOG.debug("please check device actually.[%s]" % data_str.strip())
779 cmd = "bm install -p %s %s" % (command.strip(), remote_file_path)
1060 LOG.debug(data_buf.decode().strip())
1166 line = line.strip()
1189 line = line.strip()
/third_party/littlefs/scripts/
H A Dperf.py1046 if not any('perf_'+k in r and r['perf_'+k].strip()
1052 if k in r and r[k].strip()},
1054 if 'perf_'+k in r and r['perf_'+k].strip()}))
1093 if not any('perf_'+k in r and r['perf_'+k].strip()
1099 if k in r and r[k].strip()},
1101 if 'perf_'+k in r and r['perf_'+k].strip()}))
H A Dperfbd.py1026 if not any('perfbd_'+k in r and r['perfbd_'+k].strip()
1032 if k in r and r[k].strip()},
1034 if 'perfbd_'+k in r and r['perfbd_'+k].strip()}))
1073 if not any('perfbd_'+k in r and r['perfbd_'+k].strip()
1079 if k in r and r[k].strip()},
1082 and r['perfbd_'+k].strip()}))
/third_party/python/Tools/unicode/
H A Dmakeunicodedata.py614 name = record.name.strip()
724 name = record.name.strip()
938 line = line.split('#', 1)[0].strip()
941 yield [field.strip() for field in line.split(';')]
1132 value = value.strip().replace(',', '')
1282 if s.strip():
/test/testfwk/developer_test/src/core/driver/
H A Ddrivers.py92 line = line.strip()
140 item = item.strip(" ")
142 level_para_string = level_para_string.strip(",")
169 suit_path = result_suit_path.split("result")[-1].strip(os.sep).split(os.sep)[0]
183 line = path_text.readline().replace("//", "").strip()
474 test_type = self.testsuite_path.split(tests_path)[1].strip(os.sep).split(os.sep)[0]
664 strip_num = len(coverage_outpath.strip("/").split("/"))
670 strip_num = len(out_path.strip("/").split("/"))
745 corpus_path = suite_file.split("fuzztest")[-1].strip(os.sep)
/kernel/linux/linux-5.10/tools/perf/
H A Dbuiltin-inject.c44 bool strip; member
756 if (inject->strip) in __cmd_inject()
878 OPT_BOOLEAN(0, "strip", &inject.strip, in cmd_inject()
879 "strip non-synthesized events (use with --itrace)"), in cmd_inject()
897 if (inject.strip && !inject.itrace_synth_opts.set) { in cmd_inject()
898 pr_err("--strip option requires --itrace option\n"); in cmd_inject()
/third_party/node/deps/v8/third_party/test262-harness/src/
H A Dtest262.py164 out = self.stdout.strip()
167 err = self.stderr.strip()
189 out = self.stdout.strip().decode('utf-8')
190 err = self.stderr.strip().decode('utf-8')
/third_party/python/Lib/
H A Dsmtplib.py154 if addrstring.strip().startswith('<'):
411 resp.append(line[4:].strip(b' \t\r\n'))
488 params = m.string[m.end("feature"):].strip()
1124 return sys.stdin.readline().strip()
H A Dplatform.py299 info = info.strip()
549 platform = '-'.join(x.strip() for x in filter(len, args))
767 ).strip()
/third_party/python/Lib/urllib/
H A Dparse.py476 # (https://url.spec.whatwg.org/#concept-basic-url-parser would strip both)
478 scheme = scheme.strip(_WHATWG_C0_CONTROL_OR_SPACE)
1042 url = str(url).strip()
1044 url = url[1:-1].strip()
1046 url = url[4:].strip()
/kernel/linux/linux-6.6/scripts/kconfig/
H A Dconf.c59 static void strip(char *str) in strip() function
413 strip(line); in conf_sym()
525 strip(line); in conf_choice()
/third_party/python/Tools/scripts/
H A Dfreeze_modules.py173 frozenid = frozenid.strip()
174 modname = modname.strip()
175 pyfile = pyfile.strip()
/kernel/linux/linux-5.10/arch/ia64/
H A DMakefile21 OBJCOPYFLAGS := --strip-all
/kernel/linux/linux-5.10/Documentation/
H A Dconf.py159 key, val = [x.strip() for x in line.split('=', 2)]
/kernel/linux/linux-6.6/arch/ia64/
H A DMakefile20 OBJCOPYFLAGS := --strip-all
/kernel/linux/linux-6.6/Documentation/
H A Dconf.py192 key, val = [x.strip() for x in line.split('=', 2)]

Completed in 31 milliseconds

1...<<11121314151617181920>>...37