| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| posixpath.py | 28 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 84 # Split a path in head (everything up to the last '/') and tail (the 89 def split(p): function 90 """Split a pathname. Returns tuple "(head, tail)" where "tail" is 99 # Split a path in root and extension. 108 # Split a pathname into a drive specification and the rest of the 112 """Split a pathname into drive and path. On Posix, drive is always 117 # Return the tail (basename) part of a path, same as split(path)[1]. 125 # Return the head (dirname) part of a path, same as split(path)[0]. 333 comps = path.split('/') [all...] |
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
| ntpath.py | 16 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 111 # but b is empty; since, e.g., split('a/') produces 119 # Split a path in a drive specification (a drive letter followed by a 123 """Split a pathname into drive and path specifiers. Returns a 2-tuple 132 """Split a pathname into UNC mount point and relative path specifiers. 159 # Split a path in head (everything up to the last '/') and tail (the 164 def split(p): function 165 """Split a pathname. 184 # Split a path in root and extension. 198 return split(p)[1 [all...] |
| posixpath.py | 28 __all__ = ["normcase","isabs","join","splitdrive","split","splitext", 84 # Split a path in head (everything up to the last '/') and tail (the 89 def split(p): function 90 """Split a pathname. Returns tuple "(head, tail)" where "tail" is 99 # Split a path in root and extension. 108 # Split a pathname into a drive specification and the rest of the 112 """Split a pathname into drive and path. On Posix, drive is always 117 # Return the tail (basename) part of a path, same as split(path)[1]. 125 # Return the head (dirname) part of a path, same as split(path)[0]. 333 comps = path.split('/') [all...] |
| /external/google-breakpad/src/testing/gtest/scripts/ |
| upload.py | 203 response_dict = dict(x.split("=") 204 for x in response_body.split("\n") if x) 209 response_dict = dict(x.split("=", 1) for x in body.split("\n") if x) 653 unused, filename = line.split(':', 1) 755 words = line.split() 832 for name in keyword_str.split(" ") 839 for line in status.split("\n"): 874 dirname, relfilename = os.path.split(filename) [all...] |
| /external/google-breakpad/src/testing/scripts/ |
| upload.py | 203 response_dict = dict(x.split("=") 204 for x in response_body.split("\n") if x) 209 response_dict = dict(x.split("=", 1) for x in body.split("\n") if x) 653 unused, filename = line.split(':', 1) 755 words = line.split() 832 for name in keyword_str.split(" ") 839 for line in status.split("\n"): 874 dirname, relfilename = os.path.split(filename) [all...] |
| /external/googletest/googlemock/scripts/ |
| upload.py | 203 response_dict = dict(x.split("=") 204 for x in response_body.split("\n") if x) 209 response_dict = dict(x.split("=", 1) for x in body.split("\n") if x) 653 unused, filename = line.split(':', 1) 755 words = line.split() 832 for name in keyword_str.split(" ") 839 for line in status.split("\n"): 874 dirname, relfilename = os.path.split(filename) [all...] |
| /external/googletest/googletest/scripts/ |
| upload.py | 203 response_dict = dict(x.split("=") 204 for x in response_body.split("\n") if x) 209 response_dict = dict(x.split("=", 1) for x in body.split("\n") if x) 653 unused, filename = line.split(':', 1) 755 words = line.split() 832 for name in keyword_str.split(" ") 839 for line in status.split("\n"): 874 dirname, relfilename = os.path.split(filename) [all...] |
| /external/v8/testing/gmock/scripts/ |
| upload.py | 203 response_dict = dict(x.split("=") 204 for x in response_body.split("\n") if x) 209 response_dict = dict(x.split("=", 1) for x in body.split("\n") if x) 653 unused, filename = line.split(':', 1) 755 words = line.split() 832 for name in keyword_str.split(" ") 839 for line in status.split("\n"): 874 dirname, relfilename = os.path.split(filename) [all...] |
| /external/v8/testing/gtest/scripts/ |
| upload.py | 203 response_dict = dict(x.split("=") 204 for x in response_body.split("\n") if x) 209 response_dict = dict(x.split("=", 1) for x in body.split("\n") if x) 653 unused, filename = line.split(':', 1) 755 words = line.split() 832 for name in keyword_str.split(" ") 839 for line in status.split("\n"): 874 dirname, relfilename = os.path.split(filename) [all...] |
| /external/r8/src/main/java/com/android/tools/r8/ir/regalloc/ |
| LinearScanRegisterAllocator.java | 252 // If an argument value has been split, we have disallowed argument reuse and therefore, 501 // When argument register reuse is disallowed, we split argument values to make sure that 615 LiveIntervals split; local 617 // If there is only one register-constrained use, split before 619 split = argumentInterval.splitBefore(use.getPosition()); 621 // If there are multiple register-constrained users, split right after the definition 623 split = argumentInterval 626 unhandled.add(split); 642 // Force all move exception ranges to start out with the exception in a fixed register. Split 674 LiveIntervals split = intervals.splitBefore(secondUse.getPosition()) local 1071 LiveIntervals split = unhandledInterval.splitBefore(nextConstrainedPosition); local 1088 LiveIntervals split = unhandledInterval.splitBefore(largestFreePosition); local 1351 LiveIntervals split = unhandledInterval.splitBefore(splitPosition); local 1429 LiveIntervals split = intervals.splitBefore(unhandledInterval.getStart()); local 1489 LiveIntervals split = spilled.splitBefore(spilled.getUses().first().getPosition()); local 1536 LiveIntervals split = spilled.splitBefore(spilled.getFirstUse()); local 1605 spillMoves.addSpillOrRestoreMove(toGapPosition(position), split, current); local [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
| os.py | 21 (e.g., split and join).
159 head, tail = path.split(name)
161 head, tail = path.split(head)
185 head, tail = path.split(name)
187 head, tail = path.split(head)
193 head, tail = path.split(head)
210 head, tail = path.split(new)
214 head, tail = path.split(old)
380 head, tail = path.split(file)
388 PATH = envpath.split(pathsep) [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
| locale.py | 206 parts = formatted.split('.')
387 code, modifier = code.split('@', 1)
391 langname, encoding = code.split('.')[:2]
417 if code.split('@', 1)[1].translate(_ascii_lower_map) == modifier:
431 code, modifier = code.split('@', 1)
441 code, defmod = code.split('@', 1)
464 code, modifier = code.split('@', 1)
472 return tuple(code.split('.')[:2])
539 localename = localename.split(':')[0]
[all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
| os.py | 34 (e.g., split and join).
172 head, tail = path.split(name)
174 head, tail = path.split(head)
198 head, tail = path.split(name)
200 head, tail = path.split(head)
206 head, tail = path.split(head)
223 head, tail = path.split(new)
227 head, tail = path.split(old)
395 head, tail = path.split(file)
403 PATH = envpath.split(pathsep) [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| os.py | 21 (e.g., split and join).
145 head, tail = path.split(name)
147 head, tail = path.split(head)
171 head, tail = path.split(name)
173 head, tail = path.split(head)
179 head, tail = path.split(head)
196 head, tail = path.split(new)
200 head, tail = path.split(old)
366 head, tail = path.split(file)
374 PATH = envpath.split(pathsep) [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
| test_urlparse.py | 31 def checkRoundtrips(self, url, parsed, split):
60 self.assertEqual(result, split)
63 self.assertEqual(t, split)
114 for url, parsed, split in testcases:
115 self.checkRoundtrips(url, parsed, split)
139 for url, parsed, split in testcases:
142 split = (scheme,) + split
143 self.checkRoundtrips(url, parsed, split)
|
| /external/autotest/client/cros/nfc/ |
| console.py | 491 args = args.strip().split(' ') 504 args = args.strip().split(' ') 516 args = args.strip().split(' ') 528 args = args.strip().split(' ') 540 args = args.split(' ') 552 args = args.strip().split(' ') 589 args = args.strip().split(' ') 608 args = args.strip().split(' ') 621 args = args.strip().split(' ')
|
| /external/devlib/devlib/module/ |
| cgroups.py | 182 tid = task.split(',')[0] 184 tname = task.split(',')[1] 187 tcmdline = task.split(',')[2] 202 return int(output.split()[0]) 254 attr = res.split(':')[0] 255 value = res.split(':')[1] 286 task_ids = self.target.read_value(self.tasks_file).split() 366 name, hierarchy, num_cgroups, enabled = line.split() 404 return raw_output.split('\n', 1)[1]
|
| /external/devlib/devlib/ |
| target.py | 115 for entry in output.split(): 424 # split out everything except the last word. 425 return boolean(output.split()[-1]) # pylint: disable=maybe-no-member 430 for line in output.split('\n'): 440 fstab.append(FstabEntry(*line.split())) 501 for path in self.getenv('PATH').split(self.path.pathsep): 512 binary_path = self.get_installed(os.path.split(host_path)[1], 533 parts = line.split() 538 used_by = ''.join(parts[3:]).split(',') 669 version_files = self.execute(command, check_exit_code=False).strip().split() [all...] |
| /external/python/cpython2/Lib/ |
| locale.py | 208 parts = formatted.split('.') 389 code, modifier = code.split('@', 1) 393 langname, encoding = code.split('.')[:2] 419 if code.split('@', 1)[1].translate(_ascii_lower_map) == modifier: 433 code, modifier = code.split('@', 1) 443 code, defmod = code.split('@', 1) 466 code, modifier = code.split('@', 1) 474 return tuple(code.split('.')[:2]) 541 localename = localename.split(':')[0] [all...] |
| os.py | 21 (e.g., split and join). 145 head, tail = path.split(name) 147 head, tail = path.split(head) 171 head, tail = path.split(name) 173 head, tail = path.split(head) 179 head, tail = path.split(head) 196 head, tail = path.split(new) 200 head, tail = path.split(old) 368 head, tail = path.split(file) 376 PATH = envpath.split(pathsep [all...] |
| /external/python/cpython2/ |
| setup.py | 247 line = line.split() 445 for d in line.strip().split("=")[1].split(":"): 494 options = parser.parse_args(env_val.split())[0] 541 lib_dirs += os.getenv('LIBRARY_PATH', '').split(os.pathsep) 543 inc_dirs += os.getenv('C_INCLUDE_PATH', '').split(os.pathsep) 557 # NOTE: using shlex.split would technically be more correct, but 562 for item in cflags.split(): 566 for item in ldflags.split(): 741 if 'tinfo' in ln: # termcap interface split out from ncurse [all...] |
| /external/selinux/python/sepolgen/src/sepolgen/ |
| audit.py | 39 off=float(fd.read().split()[0]) 92 """Parse a string that has been split into records by space into 99 fields = msg.split("=") 131 fields = msg.split("=") 222 fields = recs[i].split("=") 316 raise ValueError("Split string does not represent a valid compute sid message") 320 self.scontext = refpolicy.SecurityContext(recs[7].split("=")[1]) 321 self.tcontext = refpolicy.SecurityContext(recs[8].split("=")[1]) 322 self.tclass = recs[9].split("=")[1] 324 raise ValueError("Split string does not represent a valid compute sid message" [all...] |
| /frameworks/opt/calendar/src/com/android/calendarcommon2/ |
| RecurrenceSet.java | 105 String[] ruleStrs = ruleStr.split(RULE_SEPARATOR); 120 for (String date : dateStr.split(RULE_SEPARATOR)) { 158 String[] rawDates = recurrence.split(","); 401 String[] split = unfoldedRuleStr.split(RULE_SEPARATOR); local 402 int count = split.length; 404 split[n] = fold(split[n]); 406 return split; 425 * break. Long content lines SHOULD be split into a multiple lin [all...] |
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| os.py | 21 (e.g., split and join). 145 head, tail = path.split(name) 147 head, tail = path.split(head) 171 head, tail = path.split(name) 173 head, tail = path.split(head) 179 head, tail = path.split(head) 196 head, tail = path.split(new) 200 head, tail = path.split(old) 366 head, tail = path.split(file) 374 PATH = envpath.split(pathsep [all...] |
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| os.py | 21 (e.g., split and join). 145 head, tail = path.split(name) 147 head, tail = path.split(head) 171 head, tail = path.split(name) 173 head, tail = path.split(head) 179 head, tail = path.split(head) 196 head, tail = path.split(new) 200 head, tail = path.split(old) 366 head, tail = path.split(file) 374 PATH = envpath.split(pathsep [all...] |