| /external/python/cpython2/Tools/scripts/ |
| mailerdaemon.py | 135 exp = re.compile(re.escape(email).join(regexp.split('<>')), re.MULTILINE) 138 errors.append(' '.join((email.strip()+': '+res.group('reason')).split())) 146 errors.append(' '.join((email.strip()+': '+reason).split()))
|
| /external/r8/tools/ |
| run_on_app.py | 171 args.extend(values['r8-flags'].split(' ')) 174 args.extend(options.compiler_flags.split(' ')) 176 args.extend(options.r8_flags.split(' '))
|
| /external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
| StringRef.h | 363 /// split - Split into two substrings around the first occurrence of a 371 /// \param Separator - The character to split on. 372 /// \return - The split substrings. 373 std::pair<StringRef, StringRef> split(char Separator) const { 380 /// split - Split into two substrings around the first occurrence of a 388 /// \param Separator - The string to split on. 389 /// \return - The split substrings. 390 std::pair<StringRef, StringRef> split(StringRef Separator) const [all...] |
| /external/swiftshader/third_party/LLVM/utils/Misc/ |
| zkill | 30 minutes,value = value.split(':',1) 32 seconds,fseconds = value.split('.',1) 41 # Split into potential arguments. 42 args = command.split(' ') 81 lns = out.split('\n') 83 header = it.next().split() 101 fields = ln.split(None, numRows - 1)
|
| /external/toolchain-utils/automation/clients/report/dejagnu/ |
| summary.py | 27 attrs, line = line.split('|', 1) 47 path_parts = path.split('/') 70 first, rest = variant.split(' ', 1)
|
| /external/toolchain-utils/deprecated/ |
| run_benchmarks.py | 80 benchname = re.split('/', bench)[2] 113 benchname = re.split('/', bench)[2] 199 comps = re.split('/', arg)
|
| /external/toolchain-utils/ |
| heat_map.py | 62 for line in output.strip().split('\n'): 63 head = line.split('[')[2] 64 address = head.split('(')[0]
|
| weekly_report.py | 51 pieces = test_path.split('/') 98 """ % (vanilla_image_path.split('/')[-1], chromeos_root, 105 pieces = test_path.split('/')
|
| /external/v8/testing/gtest/test/ |
| gtest_shuffle_test.py | 100 for line in RunAndReturnOutput(extra_env, args).split('\n'): 123 test_case = test.split('.')[0] 248 [test_case, _] = test.split('.')
|
| /external/v8/tools/ |
| gen-postmortem-metadata.py | 372 entries = typestr.split(','); 403 parts = usetype.split('_'); 489 args = re.split('\s*,\s*', rest);
|
| jsmin.py | 120 var_names = re.split(r",", var_names) 126 args = re.split(r",", args) 215 for line in re.split(r"\n", text):
|
| perf-to-html.py | 119 test_name = test.split("/", 1)[1] 140 data = with_string.split() 142 master_data = master_string.split()
|
| /external/v8/tools/ignition/ |
| linux_perf_report.py | 107 symbol = line.split(" ", 1)[1].split("+", 1)[0] 162 return handler if handler[0] == "[" else handler.split(":", 1)[1]
|
| /external/v8/tools/release/ |
| merge_to_branch.py | 122 full_description = self._create_commit_description(commit_hash).split("\n") 136 bugs.extend(s.strip() for s in bug.split(",")) 232 if len(options.branch.split('.')) > 2:
|
| /external/vixl/tools/ |
| verify_assembler_traces.py | 295 for instruction in vixl_instruction.split(';'): 341 (m.group('instruction'), m.group('encoding').replace(" ", "").split(",")) 376 match_object.group('encoding').replace(" ", "").split(",")
|
| /external/vulkan-validation-layers/tests/gtest-1.7.0/test/ |
| gtest_shuffle_test.py | 100 for line in RunAndReturnOutput(extra_env, args).split('\n'): 123 test_case = test.split('.')[0] 248 [test_case, _] = test.split('.')
|
| /frameworks/base/tools/localedata/ |
| extract_icu_data.py | 27 """Split a locale into three parts, for langauge, script, and region.""" 28 parts = locale.split('_') 209 return locale.split('_')[1] 213 language = locale.split('_')[0]
|
| /frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
| VisualVoicemailSmsFilter.java | 224 String[] mccMncList = entry.split(";")[0].split(","); 225 Pattern pattern = Pattern.compile(entry.split(";")[1]);
|
| /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/ |
| EncodedStringValue.java | 221 * Split this encoded string around matches of the given pattern. 227 public EncodedStringValue[] split(String pattern) { method in class:EncodedStringValue 228 String[] temp = getString().split(pattern); 246 String[] values = src.split(";");
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/ |
| __init__.py | 58 if modname.split(".")[-1] in exclude: 176 use_resources.extend(value.split(",")) 178 exclude.extend(value.split(","))
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
| spawn.py | 116 _cfg_target_split = [int(x) for x in _cfg_target.split('.')] 122 if _cfg_target_split > [int(x) for x in cur_target.split('.')]: 185 paths = path.split(os.pathsep)
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/ |
| CallTipWindow.py | 29 curline = int(self.widget.index("insert").split('.')[0]) 64 int, self.widget.index(parenleft).split(".")) 99 curline, curcol = map(int, self.widget.index("insert").split('.')) 152 text.insert("insert", "string.split")
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| mailcap.py | 39 mailcaps = str.split(':') 80 types = key.split('/') 162 MIMEtypes = MIMEtype.split('/')
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| test_platform.py | 176 real_ver = ln.strip().split()[-1] 180 result_list = res[0].split('.') 181 expect_list = real_ver.split('.')
|
| /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/ |
| __init__.py | 58 if modname.split(".")[-1] in exclude: 176 use_resources.extend(value.split(",")) 178 exclude.extend(value.split(","))
|