/third_party/python/Lib/test/ |
H A D | test_http_cookies.py | 256 for i in "the holy hand grenade".split(): 268 for i in "thou cast _the- !holy! ^hand| +*grenade~".split():
|
H A D | test_sort.py | 173 data = 'The quick Brown fox Jumped over The lazy Dog'.split() 183 data = 'The quick Brown fox Jumped over The lazy Dog'.split()
|
/third_party/python/Lib/email/ |
H A D | header.py | 89 parts = ecre.split(line) 338 syntactic breaks': split points preceded by a splitchar are preferred 342 other as a split point when other split chars do not appear in the line 343 being split. Splitchars does not affect RFC 2047 encoded lines. 450 # then we must split the header at the "highest level syntactic break" 458 # encoding which means we don't need to split the line on syntactic 461 # though is that we have to split at octet boundaries, not character 462 # boundaries but it's only safe to split at character boundaries so at 505 parts = re.split("([" [all...] |
H A D | generator.py | 50 expanded to 8 spaces) than maxheaderlen, the header will split as 137 # pragmatic split determined by experiment; we could be more general by 154 lines = NLCRE.split(lines) 161 # with it and pass without it. (NLCRE.split ends with a blank element 338 lines = text.split(self._encoded_NL)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | StringRef.cpp | 328 void StringRef::split(SmallVectorImpl<StringRef> &A, 333 // Count down from MaxSplit. When MaxSplit is -1, this will just split 342 // Push this split. 355 void StringRef::split(SmallVectorImpl<StringRef> &A, char Separator, 359 // Count down from MaxSplit. When MaxSplit is -1, this will just split 368 // Push this split.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Option/ |
H A D | OptTable.cpp | 217 StringRef(In.Values).split(Candidates, ",", -1, false); in suggestValueCompletions() 282 // attempt to split the given option based on that delimiter. in findNearest() 288 std::tie(LHS, RHS) = Option.split(Last); in findNearest()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | StringRef.cpp | 314 void StringRef::split(SmallVectorImpl<StringRef> &A, 319 // Count down from MaxSplit. When MaxSplit is -1, this will just split 328 // Push this split. 341 void StringRef::split(SmallVectorImpl<StringRef> &A, char Separator, 345 // Count down from MaxSplit. When MaxSplit is -1, this will just split 354 // Push this split.
|
/third_party/python/Lib/unittest/ |
H A D | loader.py | 147 parts = name.split('.') 301 top_part = start_dir.split('.')[0]
|
/third_party/skia/ |
H A D | PRESUBMIT.py | 342 file_path.split(os.path.sep)[0] == 'include' and 378 if 'site' == file_path.split(os.path.sep)[0]:
|
/third_party/spirv-tools/test/tools/ |
H A D | expect.py | 376 self.expected_file_contents.split('\n'), 377 file_contents.split('\n'),
|
/third_party/vulkan-loader/scripts/ |
H A D | helper_file_generator.py | 186 required_extensions = requires.split(',') 286 result = len.split(',')[0]
|
/third_party/mbedtls/tests/scripts/ |
H A D | generate_test_code.py | 414 dependencies = list(map(validate_dependency, inp_str.split(':'))) 533 for arg in arg_list.split(','): 629 # Check function signature. Function signature may be split 638 # check if we have full signature i.e. split in more lines 737 :param inp_str: String to split 742 raise ValueError('Expected split character. Found string!') 745 len(inp_str)).split('\n')
|
/third_party/mesa3d/src/gallium/drivers/r600/sfn/ |
H A D | sfn_scheduler.cpp | 55 alu_groups.push_back(instr->split(m_value_factory)); 112 m_last_lds_instr = instr->split(buffer, m_last_lds_instr); 120 m_last_lds_instr = instr->split(buffer, m_last_lds_instr);
|
/third_party/node/test/parallel/ |
H A D | test-assert.js | 468 assert.strictEqual(err.message.split('\n').length, 19); 469 assert.strictEqual(err.actual.split('\n').length, 16); 1534 assert.strictEqual(inspect(err).split('\n')[5], ' ^');
|
/third_party/node/deps/v8/third_party/test262-harness/src/ |
H A D | test262.py | 199 testdirlist = test_name.split('/') 339 args = command.split(" ") 489 name = rel_path.split(path.sep)[:-1] + [basename]
|
/third_party/node/deps/v8/tools/testrunner/ |
H A D | base_runner.py | 377 help="Run this shard from the split up tests.") 537 options.command_prefix = shlex.split(options.command_prefix) 538 options.extra_flags = sum(list(map(shlex.split, options.extra_flags)), []) 630 args_names = OrderedDict([(arg.split('/')[0], None) for arg in args]) # set
|
/third_party/node/test/common/ |
H A D | index.js | 87 .split(/\s+/) 362 const knownFromEnv = process.env.NODE_TEST_KNOWN_GLOBALS.split(','); 405 console.log(context.stack.split('\n').slice(2).join('\n'));
|
/third_party/mesa3d/src/gallium/drivers/r600/sb/ |
H A D | sb_ra_init.cpp | 538 split(sh.root); 603 void ra_split::split(container_node* n) { 632 split(static_cast<container_node*>(o));
|
/third_party/python/Lib/ |
H A D | ftplib.py | 292 hbytes = host.split('.') 594 for fact in facts_found[:-1].split(";"): 866 parts = resp[left + 1:right].split(resp[left+1])
|
H A D | smtplib.py | 465 resp = self.ehlo_resp.decode("latin-1").split('\n') 720 advertised_authlist = self.esmtp_features["auth"].split() 1127 toaddrs = prompt("To").split(',')
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/ |
H A D | vktImageAtomicSpirvShaders.cpp | 6632 test_name = line.strip().split()[1] 6633 test_name = "_".join(test_name.split(".")[-2:]) 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] 6633 test_name = "_".join(test_name.split(".")[-2:]) 6663 words = spirv_line.strip().split()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | generator.py | 1121 paramdecl = indent + ' '.join(paramdecl.split()) 1333 pdecl = ' '.join(pdecl.split()) 1334 tdecl = ' '.join(tdecl.split())
|
/third_party/python/Doc/tools/extensions/ |
H A D | pyspecific.py | 176 for arg in self.arguments[0].rstrip(".").split(","): 257 args = (a.strip() for a in self.arguments[1].strip("'\"").split(",")) 434 current_version = tuple(int(e) for e in env.config.version.split('.')) 435 removed_version = tuple(int(e) for e in self.arguments[1].split('.'))
|
/third_party/python/Lib/idlelib/idle_test/ |
H A D | test_sidebar.py | 476 if index.split('.', 1)[1] != '0': 498 for line_index, line in enumerate(input.split('\n')): 749 selected_lines = selected_lines_text.split('\n') 750 selected_lines.pop() # Final '' is a split artifact, not a line.
|