Home
last modified time | relevance | path

Searched refs:split (Results 401 - 425 of 3414) sorted by relevance

1...<<11121314151617181920>>...137

/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-deaddrop/mount-origin/
H A Ddeaddrop.js117 var us = e.url.split("/"), ul = us[us.length - 1], n;
134 var us = e.url.split("/"), ul = us[us.length - 1], n;
204 u = u.split("/");
/third_party/libwebsockets/plugins/deaddrop/assets/
H A Ddeaddrop.js117 var us = e.url.split("/"), ul = us[us.length - 1], n;
134 var us = e.url.split("/"), ul = us[us.length - 1], n;
204 u = u.split("/");
/third_party/lame/test/
H A Dlametest.py42 out = split(out, "\n")
141 path = split(os.environ['PATH'], os.pathsep)
168 tmp = split(options_file, os.sep)
/third_party/python/Tools/scripts/
H A Dmailerdaemon.py140 exp = re.compile(re.escape(email).join(regexp.split('<>')), re.MULTILINE)
143 errors.append(' '.join((email.strip()+': '+res.group('reason')).split()))
151 errors.append(' '.join((email.strip()+': '+reason).split()))
/third_party/python/Tools/unicode/
H A Dgenmap_support.py188 line = line.split('#', 1)[0].strip()
189 if not line or len(line.split()) < 2:
192 row = [eval(e) for e in line.split()]
/third_party/protobuf/benchmarks/util/
H A Dresult_parser.py32 name_list = re.split(r"[/\.]", file_name)
67 re.split("(_parse_|_serialize)", benchmark["name"])[0])
216 result_list = re.split(r"[\ \t]+", line)
/third_party/python/Lib/idlelib/
H A Dgrep.py106 dir, base = os.path.split(path)
164 folder, filepat = os.path.split(path)
199 x, y = map(int, parent.geometry().split('+')[1:])
/third_party/skia/third_party/externals/angle2/src/libANGLE/
H A Dgen_overlay_widgets.py115 args_separated = constructor.split('(', 1)
164 coord_split = coords[axis].split('.')
203 coord_split = coord.split('.')
/third_party/python/Modules/_decimal/tests/
H A Dformathelper.py140 locale_list = [loc.split()[0] for loc in f.readlines() \
151 locale_list = locale_list.split('\n')
169 x = line.split()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
H A DBlockExtractor.cpp115 Buf->getBuffer().split(Lines, '\n', /*MaxSplit=*/-1, in loadFile()
119 Line.split(LineSplit, ' ', /*MaxSplit=*/-1, in loadFile()
126 LineSplit[1].split(BBNames, ';', /*MaxSplit=*/-1, in loadFile()
146 // 'invoke', then we want to split the landing pad. in splitLandingPadPreds()
/third_party/python/Lib/urllib/
H A Drobotparser.py111 line = line.split(':', 1)
139 numbers = line[1].split('/')
255 # split the name token and make it lower case
256 useragent = useragent.split("/")[0].lower()
/third_party/rust/crates/bindgen/bindgen/ir/
H A Dobjc.rs220 let split_name: Vec<&str> = name.split(':').collect(); in new()
258 .split(':') in format_method_call()
298 let name_and_sig: Vec<&str> = arg.split(' ').collect(); in format_method_call()
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Dpoisson_distribution.h39 // * The standard algorithm, attributed to Knuth, extended using a split method
146 // Use split-knuth method. in param_type()
187 for (int split = p.split_; split > 0; --split) { in operator ()()
/test/testfwk/developer_test/src/core/driver/
H A Ddrivers.py107 lines = content.split(end_mark)
135 level_list = list(set(level_string.split(",")))
148 filedir, _ = os.path.split(testsuit_path)
169 suit_path = result_suit_path.split("result")[-1].strip(os.sep).split(os.sep)[0]
180 suite_path_txt = suite_file.split(".")[0] + "_path.txt"
186 tree.getroot().attrib["name"] = os.path.basename(suite_file.split(".")[0])
188 test_suit = os.path.basename(result_xml).split(".")[0]
189 log_path = os.path.abspath(result_xml).split("result")[0]
210 filename = filename.split("
[all...]
/test/testfwk/xdevice/plugins/ohos/src/ohos/testkit/
H A Dkit.py130 files = command_value.split("->")
135 files = command_value.split("->")
244 files = re.split('->|=>', push_info)
281 dst_paths = dst.split("\\")
620 if prop is None or prop.find("=") < 0 or len(prop.split("=")) != 2:
624 new_props[prop.split("=")[0]] = prop.split("=")[1]
637 if len(cust_prop_file.split(":")) != 2:
642 cust_files[cust_prop_file.split(":")[0]] = \
643 cust_prop_file.split("
[all...]
/third_party/littlefs/scripts/
H A Dplot.py179 # note using split here ensures the trailing string has no newline
180 lines = s.split('\n')
241 x, _ = x.split('/', 1)
1396 lambda k,v=None: (k, v.split(',') if v is not None else ())
1397 )(*x.split('=', 1)),
1403 lambda k,v=None: (k, v.split(',') if v is not None else ())
1404 )(*x.split('=', 1)),
1411 lambda k,v=None: (k, v.split(',') if v is not None else ())
1412 )(*x.split('=', 1)),
1417 type=lambda x: (lambda k,v: (k, set(v.split(','))))(*
[all...]
/base/global/i18n_lite/tools/i18n-dat-tool/src/main/java/ohos/global/i18n/
H A DDataFetcher.java216 String[] locale1Parts = locale1.split("-"); in localeCompare()
230 String[] locale2Parts = locale2.split("-"); in localeCompare()
288 String[] values = data.split("_", -1); in writeData()
307 String[] units = values[1].split("\\|"); in getMeasureDataUnit()
336 String[] values = data.split("_", -1); in writeMeasureData()
/base/update/sys_installer_lite/frameworks/source/updater/
H A Dhota_updater.c171 char split[] = ".| "; in IsLatestVersion() local
179 currentVerSplit = strtok_s(currentVerCopy, split, &currentVerTemp); in IsLatestVersion()
180 pkgVerSplit = strtok_s(pkgVerCopy, split, &pkgVerTemp); in IsLatestVersion()
195 currentVerSplit = strtok_s(NULL, split, &currentVerTemp); in IsLatestVersion()
196 pkgVerSplit = strtok_s(NULL, split, &pkgVerTemp); in IsLatestVersion()
/kernel/linux/linux-6.6/tools/perf/tests/
H A Dattr.py23 a_list = a.split('|')
24 b_list = b.split('|')
132 return [int(v) for v in version.split(".")[0:2]]
205 items = list(filter(None, pattern.split(a)))
231 arch_list = self.arch.split(',')
/kernel/linux/linux-6.6/scripts/
H A Dbpf_doc.py72 args = capture.group(4).split(', ')
400 for line in re.sub('\n$', '', elem.desc, count=1).split('\n'):
405 for line in elem.ret.rstrip().split('\n'):
820 for line in re.sub('\n$', '', helper.desc, count=1).split('\n'):
826 for line in helper.ret.rstrip().split('\n'):
/test/testfwk/developer_test/local_coverage/interface_coverage/
H A Dinterface_coverage_gcov_lcov.py236 temp_list = sub_line_string.split(",")
302 para_list = content.split(",")
453 CODEPATH = current_path.split("/test/testfwk/developer_test")[0]
470 part_name_list = part_args.split("testpart=")[1].split(",")
/third_party/libwebsockets/test-apps/
H A Dtest.js178 u = u.split("/");
188 var parts = location.search.substring(1).split("&");
191 var nv = parts[i].split("=");
430 j = msg.data.split(";");
433 i = j[f].split(" ");
/third_party/libwebsockets/minimal-examples/http-server/minimal-http-server-eventlib-demos/mount-origin/
H A Dtest.js178 u = u.split("/");
188 var parts = location.search.substring(1).split("&");
191 var nv = parts[i].split("=");
430 j = msg.data.split(";");
433 i = j[f].split(" ");
/third_party/nghttp2/doc/
H A Dmkapiref.py133 doctype = line.split()[1]
212 macro_name = line.split()[1]
237 items = line.split()
244 enum_name = line.rstrip().split()[1]
268 struct_name = line.rstrip().split()[index]
/third_party/node/deps/npm/test/lib/commands/
H A Dhook.js202 outputs[0][0].split(/\t/),
207 outputs[1][0].split(/\t/),
364 outputs.map(line => line[0].split(/\t/)),
499 outputs.map(line => line[0].split(/\t/)),
602 outputs.map(line => line[0].split(/\t/)),

Completed in 18 milliseconds

1...<<11121314151617181920>>...137