/third_party/node/test/parallel/ |
H A D | test-fs-realpath.js | 421 const abedabed = tmp('abedabed'.split('').join('/')); 424 const abedabeda = tmp('abedabeda'.split('').join('/')); 464 const abedabed = tmp('abedabed'.split('').join('/')); 467 const abedabeda = tmp('abedabeda'.split('').join('/'));
|
/third_party/node/tools/gyp/pylib/gyp/ |
H A D | mac_tool.py | 293 binary = os.path.basename(framework).split(".")[0] 313 binary = os.path.basename(framework).split(".")[0] 346 framework_name = os.path.basename(framework).split(".")[0] 385 platform = os.environ["CONFIGURATION"].split("-")[-1]
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | filters.py | 71 attribute = [int(x) if x.isdigit() else x for x in attribute.split('.')] 202 for item in _word_beginning_split_re.split(soft_unicode(s)) 523 rel = set((rel or '').split() or []) 526 rel.update((policies['urlize.rel'] or '').split()) 621 split words apart if they are longer than `width`. By default, the newlines
|
/third_party/musl/porting/linux/user/ldso/ |
H A D | ns_config.c | 76 char *split; in config_line() local 94 if (split = strchr(line, '=')) { in config_line() 97 klen = split - line; in config_line() 100 if (vlen > 0) memcpy(value, split+1, vlen); in config_line()
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
H A D | mac_tool.py | 293 binary = os.path.basename(framework).split(".")[0] 313 binary = os.path.basename(framework).split(".")[0] 346 framework_name = os.path.basename(framework).split(".")[0] 385 platform = os.environ["CONFIGURATION"].split("-")[-1]
|
/third_party/node/deps/icu-small/source/i18n/ |
H A D | repattrn.cpp | 650 // split 653 int32_t RegexPattern::split(const UnicodeString &input, in split() function in RegexPattern 666 r = m.split(input, dest, destCapacity, status); in split() 672 // split, UText mode 674 int32_t RegexPattern::split(UText *input, in split() function in RegexPattern 687 r = m.split(input, dest, destCapacity, status); in split()
|
/third_party/musl/ldso/linux/ |
H A D | ns_config.c | 76 char *split; in config_line() local 94 if (split = strchr(line, '=')) { in config_line() 97 klen = split - line; in config_line() 100 if (vlen > 0) memcpy(value, split + 1, vlen); in config_line()
|
/third_party/python/Lib/idlelib/ |
H A D | config.py | 502 'extensions', keysName, eventName, default='').split() 521 'extensions', bindsName, eventName, default='').split() 535 warn_on_default=False).split() 711 value=value.split(';')
|
/third_party/python/Lib/importlib/metadata/ |
H A D | __init__.py | 203 attrs = filter(None, (match.group('attr') or '').split('.')) 333 '__iadd__ insert sort'.split(), 810 return dict.fromkeys(child.split(posixpath.sep, 1)[0] for child in names) 1080 return (dist.read_text('top_level.txt') or '').split()
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | xml_consistency.py | 418 if len(set(extends.split(',')) & allowedStructs) > 0: 450 for value in limittype.split(','): 591 author = name.split('_')[1] 605 id = name.split('_')[1]
|
H A D | genRef.py | 166 explicitRefs = explicitRefs.split() 501 seeAlso=seeAlsoList(pi.name, pi.refs, pi.alias.split()), 552 seeAlso=seeAlsoList(pi.name, pi.refs, pi.alias.split()), 581 logDiag('autoGenFlagsPage: split name into', name, 'Flags', author) 721 for alias in pi.alias.split(): 1009 if conventions.xml_api_name in v.supported.split(','))
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
H A D | repattrn.cpp | 650 // split 653 int32_t RegexPattern::split(const UnicodeString &input, in split() function in RegexPattern 666 r = m.split(input, dest, destCapacity, status); in split() 672 // split, UText mode 674 int32_t RegexPattern::split(UText *input, in split() function in RegexPattern 687 r = m.split(input, dest, destCapacity, status); in split()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | StringRef.h | 713 /// \param Separator The character to split on. 714 /// \returns The split substrings. 716 std::pair<StringRef, StringRef> split(char Separator) const { 731 /// \param Separator - The string to split on. 732 /// \return - The split substrings. 734 std::pair<StringRef, StringRef> split(StringRef Separator) const { 752 /// \param Separator - The string to split on. 753 /// \param MaxSplit - The maximum number of times the string is split. 755 void split(SmallVectorImpl<StringRef> &A, 770 /// \param Separator - The string to split o [all...] |
/third_party/python/Lib/test/ |
H A D | test_unicodedata.py | 334 data = [int(x, 16) for x in data.split(" ")] 373 line = line.split('#')[0] 378 part = line.split()[0] 380 c1,c2,c3,c4,c5 = [self.unistr(x) for x in line.split(';')[:-1]]
|
H A D | test_pprint.py | 409 words = 'the quick brown fox jumped over a lazy dog'.split() 424 words = 'the quick brown fox jumped over a lazy dog'.split() 1080 words = 'the quick brown fox jumped over a lazy dog'.split() 1109 words = 'the quick brown fox jumped over a lazy dog'.split() 1150 words = 'the quick brown fox jumped over a lazy dog'.split() 1178 words = 'the quick brown fox jumped over a lazy dog'.split() 1195 words = 'the quick brown fox jumped over a lazy dog'.split()
|
H A D | test_textwrap.py | 189 "reformatting-|posts-|from-|tim-|peters'ly").split('|') 196 self.check_split('half-a-crown', 'half-|a-|crown'.split('|')) 208 self.check_wrap(text, 1, text.split(), break_long_words=False) 216 self.check_wrap(text, 1, text.split(), break_long_words=False) 343 "what-d'you-|call-|it.".split('|')) 595 # least one character gets split off on every pass.
|
/third_party/python/Lib/zoneinfo/ |
H A D | _zoneinfo.py | 635 offset_str, *start_end_str = tz_str.split(",", 1) 682 start_end_strs = start_end_str[0].split(",", 1) 699 date, *time = dststr.split("/") 718 time_components = list(map(int, time[0].split(":")))
|
/third_party/ffmpeg/tools/python/ |
H A D | convert_from_tensorflow.py | 210 knode, bnode, anode = self.get_dense_params(scope_name.split('/')[0]) 242 input_name = self.dense_scopename_inputname_dict[scope_name.split('/')[0]] 562 if scope + '/kernel' not in self.name_node_dict and scope.split('/Tensordot')[0] + '/kernel' not in self.name_node_dict: 564 self.dense_scope_names.add(scope.split('/Tensordot')[0]) 579 elif scope.split('/Tensordot')[0] in self.dense_scope_names: 582 if TFConverter.get_scope_name(inp).find(scope)<0 and TFConverter.get_scope_name(inp).find(scope.split('/')[0])<0: 583 self.dense_scopename_inputname_dict[scope.split('/Tensordot')[0]] = inp
|
/third_party/littlefs/scripts/ |
H A D | bench.py | 76 # split commas but only outside of parens 902 case, _ = failure.id.split(':', 1) 1230 type=lambda x: x.split(), 1354 type=lambda x: x.split(), 1360 type=lambda e: e.split(), 1369 type=lambda x: x.split(), 1391 type=lambda x: x.split(), 1396 type=lambda x: x.split(),
|
H A D | perfbd.py | 556 # try to split up files so that even single files can be processed 1172 type=lambda x: (lambda k,v: (k, set(v.split(','))))(*x.split('=', 1)), 1222 type=lambda x: tuple(float(x) for x in x.split(',')), 1229 type=lambda x: tuple(float(x) for x in x.split(',')), 1236 type=lambda x: tuple(float(x) for x in x.split(',')), 1243 type=lambda x: tuple(float(x) for x in x.split(',')), 1270 type=lambda x: x.split(),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Host.cpp | 156 ProcCpuinfoContent.split(Lines, "\n"); in getHostCPUNameForARM() 289 ProcCpuinfoContent.split(Lines, "\n"); in getHostCPUNameForS390x() 297 Lines[I].drop_front(Pos + 1).split(CPUFeatures, ' '); in getHostCPUNameForS390x() 1280 (*Text)->getBuffer().split(strs, "\n", /*MaxSplit=*/-1, in computeHostNumPhysicalCores() 1289 std::pair<StringRef, StringRef> Data = Line.split(':'); in computeHostNumPhysicalCores() 1499 P->getBuffer().split(Lines, "\n"); in getHostCPUFeatures() 1506 Lines[I].split(CPUFeatures, ' '); in getHostCPUFeatures()
|
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/ |
H A D | kit_lite.py | 73 self.burn_command = burn_command.replace(" ", "").split(",") 432 for sub_dir in dir_path.split("/"): 455 _list = mount_dir.split("/") 687 items = message[len("The "):].split(" is ") 735 upgrade_name = upgrade_file_name.split(".py")[0]
|
/third_party/ffmpeg/libavcodec/ |
H A D | svq1enc.c | 97 int count, y, x, i, j, split, best_mean, best_score, best_count; in encode_block() local 188 split = 0; in encode_block() 204 split = 1; in encode_block() 211 put_bits(&s->reorder_pb[level], 1, split); in encode_block() 213 if (!split) { in encode_block()
|
/third_party/mbedtls/scripts/ |
H A D | code_size_compare.py | 103 .format(measure_tool=self.measure_cmd.strip().split(' ')[0]) 369 self.measure_cmd.strip().split(' ')[0])) 514 data = line.split() 531 data = line.strip().split() 768 .strip().split(' ')[0]))
|
/third_party/python/Lib/test/test_email/ |
H A D | test_contentmanager.py | 236 for maintype in 'audio image video application'.split(): 271 for subtype in 'rfc822 external-body'.split(): 579 for cte in 'quoted-printable base64'.split(): 580 for subtype in 'rfc822 external-body'.split(): 588 for cte in '8bit binary'.split():
|