Searched refs:strip (Results 551 - 575 of 741) sorted by relevance
1...<<21222324252627282930
/third_party/vk-gl-cts/scripts/android/ |
H A D | install_apk.py | 61 if len(line.strip()) == 0:
|
/third_party/python/Lib/ |
H A D | argparse.py | 289 help = help.strip('\n') + '\n' 457 # if it's in a group, strip the outer [] 501 text = text.strip() 542 if action.help and action.help.strip(): 653 text = self._whitespace_matcher.sub(' ', text).strip() 660 text = self._whitespace_matcher.sub(' ', text).strip() 1838 kwargs['prog'] = formatter.format_help().strip() 2466 # for everything but PARSER, REMAINDER args, strip out first '--'
|
H A D | configparser.py | 1038 # strip inline comments 1050 # strip full line comments 1052 if line.strip().startswith(prefix): 1057 value = line[:comment_start].strip() 1118 optval = optval.strip()
|
H A D | smtpd.py | 352 arg = line[i+1:].strip() 445 return arg[keylen:].strip()
|
H A D | traceback.py | 322 return self._line.strip() 468 stripped_line = frame_summary.line.strip()
|
/third_party/python/Lib/test/ |
H A D | test_tempfile.py | 820 for line in out.strip().splitlines(): 824 acl = line.removeprefix(dir).strip() 826 acl = line.strip() 1741 tmp_name = out.decode().strip() 1771 temp_path = pathlib.Path(out.decode().strip()) 1802 tmp_name = out.decode().strip()
|
H A D | test_traceback.py | 68 self.assertTrue(err[1].strip() == "return x!") 105 self.assertEqual(err[1].strip(), "bad syntax") 179 self.assertEqual(err[1].strip(), "print(2)") 187 self.assertEqual(err[1].strip(), "print(2)") 1205 tb = stderr_f.getvalue().strip().splitlines() 1207 self.assertEqual(context_message.strip(), tb[5])
|
H A D | test_gc.py | 792 self.assertEqual(out.strip(), b'__del__ called') 811 self.assertEqual(out.strip(), b'__del__ called') 825 self.assertEqual(out.strip(), b'__del__ called')
|
H A D | test_hashlib.py | 40 m.strip() for m in builtin_hashes.strip('"').lower().split(",") 93 line = line.strip()
|
H A D | test_interpreters.py | 267 self.assertEqual(out.strip(), 'True') 350 self.assertEqual(out.strip(), 'failed')
|
H A D | test_urllib2_localnet.py | 120 name = name.strip() 124 value = value.strip()
|
H A D | test_concurrent_futures.py | 319 self.assertEqual(out.strip(), b"apple") 347 self.assertEqual(out.strip(), b"runtime-error") 398 self.assertEqual(out.strip(), b"apple") 519 self.assertEqual(out.strip(), b"apple")
|
/third_party/curl/lib/ |
H A D | pop3.c | 932 the strip counter here so that these bytes won't be delivered. */ in pop3_state_command_resp() 933 pop3c->strip = 2; in pop3_state_command_resp() 1468 need to strip out. Additionally the marker could of course be spread out in Curl_pop3_write() 1510 /* We have an extra dot after the CRLF which we need to strip off */ in Curl_pop3_write() 1528 and then both prev and strip are equal and nothing will be output in Curl_pop3_write() 1530 while(prev && pop3c->strip) { in Curl_pop3_write() 1532 pop3c->strip--; in Curl_pop3_write()
|
/third_party/jinja2/ |
H A D | ext.py | 477 return _ws_re.sub(" ", string.strip()) 813 extension_name = extension_name.strip()
|
/third_party/node/deps/v8/tools/ |
H A D | callstats.py | 251 line = line.strip() 396 line = line.strip()
|
/third_party/python/Tools/wasm/ |
H A D | wasm_build.py | 249 version = f.read().strip().strip('"')
|
/third_party/python/Lib/test/libregrtest/ |
H A D | main.py | 224 next_test = fp.read().strip() 237 line = line.strip()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
H A D | vktImageAtomicSpirvShaders.cpp | 6632 test_name = line.strip().split()[1] 6663 words = spirv_line.strip().split()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/image/ |
H A D | vktImageAtomicSpirvShaders.cpp | 6632 test_name = line.strip().split()[1] 6663 words = spirv_line.strip().split()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | genRef.py | 248 if pageDesc.strip() == '': 296 if descText is None or descText.strip() == '':
|
H A D | generator.py | 832 number = strVal.strip("()~UL") 843 number = strVal.strip("()~UL")
|
/third_party/python/Lib/test/test_peg_generator/ |
H A D | test_pegen.py | 36 self.assertEqual(str(grammar), textwrap.dedent(expected).strip()) 61 self.assertEqual(str(grammar.rules["start"]), textwrap.dedent(expected).strip())
|
/third_party/vulkan-headers/registry/ |
H A D | generator.py | 832 number = strVal.strip("()~UL") 843 number = strVal.strip("()~UL")
|
/third_party/googletest/googlemock/scripts/generator/cpp/ |
H A D | ast.py | 837 # token starts with a #, so remove it and strip whitespace. 841 name = name[7:].strip() 845 name = name[1:].strip() 853 name = name[6:].strip() 863 condition = name[3:].strip()
|
/third_party/icu/tools/unicode/py/ |
H A D | preparseucd.py | 368 line = line.strip() 376 for i in range(len(fields)): fields[i] = fields[i].strip() 393 for i in range(len(fields)): fields[i] = fields[i].strip() 776 line = line.strip() 1577 # Only strip, don't merge: just output the stripped line. 1620 # After the initial preprocessing (copy/strip/merge),
|
Completed in 51 milliseconds
1...<<21222324252627282930