/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | utils.py | 136 module, obj = import_name.split(':', 1) 138 items = import_name.split('.') 206 words = _word_split_re.split(text_type(escape(text))) 242 words = LOREM_IPSUM_WORDS.split()
|
/third_party/nghttp2/ |
H A D | git-clang-format | 126 filter_by_extension(changed_lines, opts.extensions.lower().split(',')) 173 for entry in run('git', 'config', '--list', '--null').split('\0'): 175 name, value = entry.split('\n', 1) 429 new_tree).rstrip('\0').split('\0')
|
H A D | genmethodfunc.py | 50 _, m, _ = line.split(',', 2)
|
/third_party/node/deps/icu-small/source/i18n/unicode/ |
H A D | regex.h | 480 * Split a string into fields. Somewhat like split() from Perl or Java. 494 * The number of strings produced by the split operation is returned. 498 * For the best performance on split() operations, 499 * <code>RegexMatcher::split</code> is preferable to this function 501 * @param input The string to be split into fields. The field delimiters 503 * @param dest An array of UnicodeStrings to receive the results of the split. 514 * @return The number of fields into which the input string was split. 517 virtual int32_t split(const UnicodeString &input, 524 * Split a string into fields. Somewhat like %split() from Perl or Java. 538 * The number of strings produced by the split operatio [all...] |
/third_party/node/deps/npm/node_modules/normalize-package-data/lib/ |
H A D | fixer.js | 179 data.keywords = data.keywords.split(/,\s+/) 349 var rest = spec.slice(1).split('/') 435 deps = deps.trim().split(/[\n\r\s\t ,]+/) 445 d = d.trim().split(/(:?[@\s><=])/)
|
/third_party/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/ |
H A D | container.js | 253 _proto.split = function split(callback) { function 257 var split = callback.call(_this11, node); 259 if (split) {
|
/third_party/lz4/tests/ |
H A D | test-lz4-list.py | 21 splitlines = line_in.split() 31 uncompressed_filename = self.filename.split("-")[0] 107 frame_info = dict(zip(["frame", "type", "block", "checksum", "compressed", "uncompressed", "ratio"], line.split())) 217 popen = subprocess.Popen(command.split(" "), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
|
/third_party/mesa3d/src/gallium/drivers/r300/compiler/ |
H A D | r500_fragprog.c | 244 struct rc_swizzle_split * split) in r500_swizzle_split() 256 split->NumPhases = 0; in r500_swizzle_split() 262 split->Phase[split->NumPhases++] = negatebase[i]; in r500_swizzle_split() 243 r500_swizzle_split(struct rc_src_register src, unsigned int usemask, struct rc_swizzle_split * split) r500_swizzle_split() argument
|
H A D | radeon_swizzle.h | 51 * Determine how to split access to the masked channels of the 54 void (*Split)(struct rc_src_register reg, unsigned int mask, struct rc_swizzle_split * split);
|
/third_party/python/Tools/c-analyzer/c_common/ |
H A D | tables.py | 142 header = header.split(sep or '\t') 163 ncols = len(header.split(sep)) 192 row = tuple(v.strip() for v in line.split(sep)) 227 specs = specs.replace(',', ' ').strip().split()
|
/third_party/python/Lib/distutils/ |
H A D | _msvccompiler.py | 153 paths = os.getenv('path').split(os.pathsep) 226 paths = self._paths.split(os.pathsep) 234 for dir in vc_env.get('include', '').split(os.pathsep): 238 for dir in vc_env.get('lib', '').split(os.pathsep):
|
/third_party/python/Lib/email/ |
H A D | _parseaddr.py | 69 data = data.split() 82 stuff = data[0].split('-') 121 tm = tm.split(':') 129 tm = tm[0].split('.')
|
/third_party/python/Lib/test/ |
H A D | multibytecodec_support.py | 39 lines = b.split(b"\n") 309 return ''.join(chr(int(x, 16)) for x in s.split('+')) 317 data = line.split('#')[0].split()
|
/third_party/skia/third_party/externals/icu/source/i18n/unicode/ |
H A D | regex.h | 480 * Split a string into fields. Somewhat like split() from Perl or Java. 494 * The number of strings produced by the split operation is returned. 498 * For the best performance on split() operations, 499 * <code>RegexMatcher::split</code> is preferable to this function 501 * @param input The string to be split into fields. The field delimiters 503 * @param dest An array of UnicodeStrings to receive the results of the split. 514 * @return The number of fields into which the input string was split. 517 virtual int32_t split(const UnicodeString &input, 524 * Split a string into fields. Somewhat like %split() from Perl or Java. 538 * The number of strings produced by the split operatio [all...] |
/third_party/python/Lib/ |
H A D | webbrowser.py | 50 # User gave us a command line, split it into name and args 51 browser = shlex.split(browser) 118 cmd = browser.split()[0] 556 cmd = "xdg-settings get default-web-browser".split() 586 userchoices = os.environ["BROWSER"].split(os.pathsep)
|
H A D | cgitb.py | 111 pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable 174 name = where + strong(name.split('.')[-1]) 208 pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable 248 elif where != 'local': name = where + name.split('.')[-1]
|
/third_party/vk-gl-cts/scripts/ |
H A D | mustpass.py | 270 parts = pattern.split('.') 319 caseParts = caseName.split(".") 373 parts = caseName.split('.') 378 splitParts = splitPattern.split(".")
|
/third_party/astc-encoder/Test/testlib/ |
H A D | misc.py | 26 Utility function to split a relative path into its component pieces. 29 path(str): The relative path to split. 39 head, tail = os.path.split(path)
|
/third_party/libcoap/src/ |
H A D | coap_oscore.c | 1676 const char *split; in get_split_entry() local 1697 split = memchr(begin, ',', end - begin); in get_split_entry() 1698 if (split == NULL) in get_split_entry() 1702 keyword->length = split - begin; in get_split_entry() 1704 begin = split + 1; in get_split_entry() 1708 split = memchr(begin, ',', end - begin); in get_split_entry() 1709 if (split == NULL) in get_split_entry() 1713 coap_str_const_t temp = { split - begin, (const uint8_t *)begin }; in get_split_entry() 1724 begin = split + 1; in get_split_entry() 1729 split in get_split_entry() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Triple.cpp | 736 StringRef(Data).split(Components, '-', /*MaxSplit*/ 3); in Triple() 805 Str.split(Components, '-'); in normalize() 995 return StringRef(Data).split('-').first; // Isolate first component 999 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 1000 return Tmp.split('-').first; // Isolate second component 1004 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 1005 Tmp = Tmp.split('-').second; // Strip second component 1006 return Tmp.split('-').first; // Isolate third component 1010 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component 1011 Tmp = Tmp.split(' [all...] |
/third_party/node/deps/npm/node_modules/@sigstore/sign/dist/util/ |
H A D | oidc.js | 21 const parts = jwt.split('.', 3);
|
/third_party/skia/gn/ |
H A D | gen_plist_ios.py | 17 out, app = os.path.split(app)
|
/third_party/benchmark/tools/gbench/ |
H A D | report.py | 472 parts = [x for x in output_lines[i].split(' ') if x] 650 parts = [x for x in output_lines[i].split(' ') if x] 768 parts = [x for x in output_lines[i].split(' ') if x] 815 parts = [x for x in output_lines[i].split(' ') if x] 974 parts = [x for x in output_lines[i].split(' ') if x] 1099 parts = [x for x in output_lines[i].split(' ') if x]
|
/third_party/mesa3d/src/intel/perf/ |
H A D | gen_perf.py | 245 tokens = equation.split() 286 tokens = expression.split() 403 lines = expression.split(' && ') 641 self.read_hash = ' '.join(map(replace_token, read_eq.split())) 645 self.max_hash = ' '.join(map(replace_token, max_eq.split())) 659 for token in max_eq.split():
|
/third_party/node/deps/openssl/openssl/util/ |
H A D | find-doc-nits | 86 my @sections = ( split /[, ]/, $opt_m ); 304 foreach my $n ( split ',', $tmp ) { 446 foreach my $line ( split /\n+/, $contents ) { 482 )/x; # (the x allows this sort of split up regexp) 790 foreach my $line ( split /\n+/, $1 ) { 864 my @fields = split(); 1000 foreach my $f ( split / /, $1 ) {
|