Home
last modified time | relevance | path

Searched refs:split (Results 2451 - 2475 of 2986) sorted by relevance

1...<<919293949596979899100>>...120

/third_party/python/Lib/idlelib/idle_test/
H A Dtest_format.py65 linelength = int(text.index("%d.end" % line).split('.')[1])
475 newlines = newstring.split('\n')
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/sample/sfntdump/
H A DSfntDump.java271 String[] items = list.split(","); in parseList()
351 String[] cmapParams = cmap.split("\\D"); in useCMap()
/third_party/skia/third_party/externals/jinja2/
H A Dext.py601 prefix, comment = token_value.split(None, 1)
648 for extension in options.get("extensions", "").split(","):
/third_party/python/Lib/test/
H A Dtest_string.py149 for field in format_string.split('|'):
199 for part in name.split('.'):
H A Dtest_gdb.py77 flags = cflags.split()
136 gdb_frame_dir = m.group(1).split(', ')
H A Dtest_subprocess.py416 return os.path.split(python_path)
997 (stdout, stderr) = p.communicate(b"split")
2700 path, program = os.path.split(ZERO_RETURN_CMD[0])
2738 result_fds = set(map(int, output.split(b',')))
2808 remaining_fds = set(map(int, output.split(b',')))
2816 remaining_fds = set(map(int, output.split(b',')))
2829 remaining_fds = set(map(int, output.split(b',')))
2908 opened_fds = set(map(int, output_lines[0].strip().split(b',')))
2909 remaining_fds = set(map(int, output_lines[1].strip().split(b',')))
2939 remaining_fds = set(map(int, output.split(
[all...]
H A Dtest_math.py141 lhs, rhs = line.split('->')
142 id, fn, arg = lhs.split()
143 rhs_pieces = rhs.split()
162 lhs, rhs = line.split('->')
163 id, fn, arg_real, arg_imag = lhs.split()
164 rhs_pieces = rhs.split()
1461 x_hex, y_hex, expected_hex = case.split()
1687 osx_version = tuple(map(int, version_txt.split('.')))
/third_party/python/Lib/
H A Dtrace.py675 for i in opts.ignore_module for mod in i.split(',')]
677 for i in opts.ignore_dir for s in i.split(os.pathsep)]
H A Dtarfile.py1088 components = name.split("/")
1538 sparse = [int(x) for x in pax_headers["GNU.sparse.map"].split(",")]
1547 fields, buf = buf.split(b"\n", 1)
1552 number, buf = buf.split(b"\n", 1)
1836 filemode, comptype = mode.split(":", 1)
1849 filemode, comptype = mode.split("|", 1)
H A Dzipfile.py1706 arcname = (x.rstrip('.') for x in arcname.split(pathsep))
1728 arcname = os.path.sep.join(x for x in arcname.split(os.path.sep)
2041 dir, name = os.path.split(pathname)
2180 archivename = os.path.split(arcname)[1]
2224 path, tail = posixpath.split(path)
2290 parts = clean.split('/')
/third_party/python/Lib/xmlrpc/
H A Dserver.py135 attrs = attr.split('.')
451 for e in ae.split(","):
/third_party/skia/src/opts/
H A DSkRasterPipeline_opts.h2992 split(x, &r,&g); \
2993 split(y, &b,&a); \
3037 split(x, &r,&g); \
3038 split(y, &b,&a); \
3140 SI void split(S v, D* lo, D* hi) {
3173 split(x, &lo,&hi);
3177 split(x, &lo,&hi);
3181 split(x, &lo,&hi);
3190 split(x, &lo,&hi);
3194 split(
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A Dgen_builtin_symbols.py745 extension_list = [ext.strip() for ext in extensions.split(',')]
871 extension_list = [ext.strip() for ext in extension.split(',')]
1025 essl_extensions = [ext.strip() for ext in obj['essl_extension'].split(',')]
1329 parameters = parameters.split(', ')
1350 group_parts = group_rest.split(' ', 1)
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DULocale.java1256 new ArrayList<>(Arrays.asList(variants.split("_"))); in AliasReplacer()
1404 new ArrayList<>(Arrays.asList(aliasTo.split(" ")))); in loadAliasData()
1430 String aliasTo = res.get("replacement").getString().split(" ")[0]; in loadAliasData()
1522 String[] replacementFields = replacement.split("_"); in replaceLanguage()
1672 List<String> subtags = new ArrayList<>(Arrays.asList(extensions.split(LanguageTag.SEP))); in replaceTransformedExtensions()
4244 String[] uattributes = getKeywordValue(key).split("[-_]"); in extensions()
/third_party/mesa3d/src/freedreno/ir3/
H A Dir3_spill.c37 * taken to handle combining split/collect instructions.
828 * instructions (split/collect), and we don't want to add register pressure by
846 split(struct ir3_register *def, unsigned offset, in split() function
856 struct ir3_instruction *split = in split() local
858 struct ir3_register *dst = __ssa_dst(split); in split()
860 struct ir3_register *src = ir3_src_create(split, INVALID_REG, def->flags); in split()
866 ir3_instr_move_before(split, after); in split()
879 srcs[i] = split(parent_def, offset + i, after, block); in extract()
912 /* The reload may be split into multiple pieces, and if the destination in reload()
1912 /* We insert phi nodes for all live-ins of loops in case we need to split th
[all...]
/third_party/python/Lib/email/
H A D_header_value_parser.py500 return ''.join(super().value.split())
641 return ''.join(super().value.split())
975 _wsp_splitter = re.compile(r'([{}]+)'.format(''.join(WSP))).split
1046 tok, *remainder = value[2:].split('?=', 1)
1056 rest, *remainder = remstr.split('?=', 1)
1058 if len(tok.split()) > 1:
2872 to_encode. In either case, split to_encode as necessary so that the
2947 # loop? We should split the header value onto a newline in that case,
/third_party/vk-gl-cts/modules/gles3/functional/
H A Des3fTextureMipmapTests.cpp601 int split = width/2 + rnd.getInt(-width/4, +width/4); in randomPartition() local
602 randomPartition(dst, rnd, x, y, split, height); in randomPartition()
603 randomPartition(dst, rnd, x+split, y, width-split, height); in randomPartition()
607 int split = height/2 + rnd.getInt(-height/4, +height/4); in randomPartition() local
608 randomPartition(dst, rnd, x, y, width, split); in randomPartition()
609 randomPartition(dst, rnd, x, y+split, width, height-split); in randomPartition()
/test/testfwk/xdevice/plugins/devicetest/driver/
H A Dwindows.py131 testcase_list = str(testcase).split(";")
/test/testfwk/xdevice/src/xdevice/_core/context/
H A Dimpl.py121 task_id = str(uuid.uuid1()).split("-")[0]
/test/testfwk/developer_test/libs/fuzzlib/
H A Dfuzzer_helper.py89 path_list.append(striped_str.split(":")[0][3:])
/test/xts/dcts/testtools/disjsTest/server/
H A DtestApi.js182 putValue = value.split(',');
/third_party/elfutils/libdw/
H A Dlibdw_findcu.c163 newp->split = (Dwarf_CU *) -1; in __libdw_intern_next_unit()
298 /* XXX Assumes split DWARF only has CUs in main IDX_debug_info. */ in __libdw_find_split_dbg_addr()
/third_party/ffmpeg/ffbuild/
H A Dcommon.mak122 $(METALLIB) --split-module-without-linking $< -o $@
/third_party/astc-encoder/Test/
H A Dastc_test_image.py251 _, version, simd = encoderName.split("-")
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DUnicodeRegex.java182 return compileBnf(Arrays.asList(bnfLines.split("\\r\\n?|\\n")));
397 // String[] lineParts = line.split(";");

Completed in 47 milliseconds

1...<<919293949596979899100>>...120