| /test/vts-testcase/performance/fmq_benchmark/ |
| FmqPerformanceTest.py | 118 stdout_lines = results[const.STDOUT][1].split("\n") 123 (label, value) = read_result.split(": ") 130 (label, value) = write_result.split(": ")
|
| /tools/tradefederation/core/src/com/android/tradefed/device/ |
| RemoteAndroidDevice.java | 82 return getSerialNumber().split(":")[0]; 94 return getSerialNumber().split(":")[1]; 102 String[] serial = getSerialNumber().split(":");
|
| /tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/ |
| PreloadedClassesPreparerTest.java | 78 String[] command = String.format(WRITE_COMMAND, FAKE_TOOL_PATH, FAKE_FILE_PATH).split(" "); 106 String[] command = String.format(WRITE_COMMAND, FAKE_TOOL_PATH, FAKE_FILE_PATH).split(" "); 126 String[] command = String.format(WRITE_COMMAND, FAKE_TOOL_PATH, FAKE_FILE_PATH).split(" ");
|
| /art/tools/runtime_memusage/ |
| symbol_trace_info.py | 186 line.split("|")[1].strip()) 207 symbol_file_split = parsed_argv.symbol_trace.read().split("Stack Trace") 219 item_split = [s.splitlines() for s in re.split(r"\|\[[0-9]+\] ", 235 data_lists["plot_list"] = [[elem[1] for elem in enumerate(line.split()) 249 data_lists["dex_ends_list"] = [(int(line.split()[9], 16), 250 int(line.split()[12])
|
| /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/ |
| ExternalStorageHostTest.java | 319 for (String line : getDevice().executeShellCommand("cat /proc/mounts").split("\n")) { 320 String[] split = line.split(" "); local 321 if (split[1].startsWith("/storage/") || split[1].startsWith("/mnt/")) { 322 mounts.add(split[1]);
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| posixpath.py | 20 __all__ = ["normcase","isabs","join","splitdrive","split","splitext",
75 # Split a path in head (everything up to the last '/') and tail (the
80 def split(p):
function 81 """Split a pathname. Returns tuple "(head, tail)" where "tail" is
90 # Split a path in root and extension.
99 # Split a pathname into a drive specification and the rest of the
103 """Split a pathname into drive and path. On Posix, drive is always
108 # Return the tail (basename) part of a path, same as split(path)[1].
116 # Return the head (dirname) part of a path, same as split(path)[0].
324 comps = path.split('/')
[all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/world/ |
| world | 104 parts = rawaddr.split('.')
174 words = country.split()
190 [s.capitalize() for s in w.split('-')])
|
| /external/devlib/devlib/utils/ |
| rendering.py | 133 return text.replace('\r\n', '\n').replace('\r', '\n').split('\n') 137 for line in text.split('\n'): 143 parts = line.split() 166 lines = iter(output.split('\n')) 171 return columns_line.split(',')[:-1] # has a trailing ',' 209 entries = map(int, line.strip().split(',')[:-1]) # has a trailing ','
|
| /external/icu/icu4c/source/test/intltest/ |
| fldset.cpp | 70 static UnicodeString *split(const UnicodeString &src, UChar ch, int32_t &splits) function 82 int32_t split = 0; local 86 src.extractBetween(start, end, result[split++]); 90 src.extractBetween(start, src.length(), result[split]); 105 UnicodeString *dest = split(str, 0x002C /* ',' */, destCount); 109 UnicodeString *kv = split(dest[i], 0x003D /* '=' */, dc);
|
| /external/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/markdown/ |
| test-markdown.py | 41 v = v[i:].split(None, 3) # whitespace 172 test, str_time, str_mem = line.strip().split(":") 181 parts = os.path.split(dir)[-1].split("-x-") 183 extensions = parts[1].split("-") 197 html_diff_file_path = os.path.join(TMP_DIR, os.path.split(dir)[-1]) + ".html" 255 #diff = difflib.ndiff(expected_output.split("\n"), 256 # actual_output.split("\n"))
|
| /external/python/cpython2/Lib/bsddb/test/ |
| test_recno.py | 225 data = "The quick brown fox jumped over the lazy dog".split() 239 print text.split('\n') 241 self.assertEqual(text.split('\n'), data) 260 print text.split('\n') 262 self.assertEqual(text.split('\n'), 263 "The quick reddish-brown fox jumped over the comatose dog".split())
|
| /external/python/cpython3/Lib/ctypes/ |
| util.py | 21 s, rest = sys.version[i:].split(" ", 1) 59 for directory in os.environ['PATH'].split(os.pathsep): 175 parts = libname.split(b".") 231 paths = os.fsdecode(line).split()[4] 236 for dir in paths.split(":"): 284 for d in libpath.split(':'):
|
| /external/selinux/python/sepolgen/tests/ |
| test_access.py | 87 first, second = str(a).split(':') 89 second = second.split(' ') 91 expected = "file { read write };".split(' ') 95 first, second = a.to_string().split(':') 97 second = second.split(' ') 99 expected = "file { read write };".split(' ')
|
| /frameworks/wilhelm/tools/permute/ |
| permute.c | 53 /** Global state during the split phase */ 75 /** Split the specified range of frames, using the allowed budget of segments. 79 static unsigned split(State *s, unsigned frameStart, unsigned frameLength, unsigned segmentBudget) function 107 used = split(s, leftStart, leftLength, segmentBudget / 2); 108 used += split(s, rightStart, rightLength, segmentBudget - used); 110 used = split(s, rightStart, rightLength, segmentBudget / 2); 111 used += split(s, leftStart, leftLength, segmentBudget - used); 224 used = split(&s, 0, sfinfo_in.frames, s.mSegmentMax);
|
| /hardware/qcom/display/msm8084/libqdutils/ |
| mdp_version.cpp | 103 ALOGE("Unable to read display split node"); 343 char split[64] = {0}; local 347 if(fread(split, sizeof(char), 64, fp)) { 348 split[sizeof(split) - 1] = '\0'; 349 mSplit.mLeft = atoi(split); 350 ALOGI_IF(mSplit.mLeft, "Left Split=%d", mSplit.mLeft); 351 char *rght = strpbrk(split, " "); 354 ALOGI_IF(mSplit.mRight, "Right Split=%d", mSplit.mRight);
|
| /hardware/qcom/display/msm8226/libqdutils/ |
| mdp_version.cpp | 110 ALOGE("Unable to read display split node"); 349 char split[64] = {0}; local 353 if(fread(split, sizeof(char), 64, fp)) { 354 split[sizeof(split) - 1] = '\0'; 355 mSplit.mLeft = atoi(split); 356 ALOGI_IF(mSplit.mLeft, "Left Split=%d", mSplit.mLeft); 357 char *rght = strpbrk(split, " "); 360 ALOGI_IF(mSplit.mRight, "Right Split=%d", mSplit.mRight);
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/ |
| _osx_support.py | 38 paths = path.split(os.pathsep) 108 _SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2]) 138 osx_version = tuple(int(i) for i in osx_version.split('.')) 166 cc = oldcc = _config_vars['CC'].split()[0] 199 cv_split = _config_vars[cv].split() 331 compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/bsddb/test/ |
| test_recno.py | 226 data = "The quick brown fox jumped over the lazy dog".split() 240 print text.split('\n') 242 self.assertEqual(text.split('\n'), data) 261 print text.split('\n') 263 self.assertEqual(text.split('\n'), 264 "The quick reddish-brown fox jumped over the comatose dog".split())
|
| /prebuilts/gdb/linux-x86/lib/python2.7/ |
| _osx_support.py | 38 paths = path.split(os.pathsep) 108 _SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2]) 138 osx_version = tuple(int(i) for i in osx_version.split('.')) 166 cc = oldcc = _config_vars['CC'].split()[0] 199 cv_split = _config_vars[cv].split() 331 compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()
|
| /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/ |
| test_recno.py | 226 data = "The quick brown fox jumped over the lazy dog".split() 240 print text.split('\n') 242 self.assertEqual(text.split('\n'), data) 261 print text.split('\n') 263 self.assertEqual(text.split('\n'), 264 "The quick reddish-brown fox jumped over the comatose dog".split())
|
| /prebuilts/go/darwin-x86/src/mime/ |
| encodedword.go | 92 // Multi-byte characters must not be split across encoded-words. 113 // We only split encoded-words when the charset is UTF-8. 122 // Multi-byte characters must not be split across encoded-words. 204 // split delimits the first 2 fields 205 split := strings.IndexByte(word, '?') 207 // split word "UTF-8?q?ascii" into "UTF-8", 'q', and "ascii" 208 charset := word[:split] 212 if len(word) < split+3 { 215 encoding := word[split+1] 216 // the field after split must only be one byt [all...] |
| /prebuilts/go/linux-x86/src/mime/ |
| encodedword.go | 92 // Multi-byte characters must not be split across encoded-words. 113 // We only split encoded-words when the charset is UTF-8. 122 // Multi-byte characters must not be split across encoded-words. 204 // split delimits the first 2 fields 205 split := strings.IndexByte(word, '?') 207 // split word "UTF-8?q?ascii" into "UTF-8", 'q', and "ascii" 208 charset := word[:split] 212 if len(word) < split+3 { 215 encoding := word[split+1] 216 // the field after split must only be one byt [all...] |
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
| _osx_support.py | 38 paths = path.split(os.pathsep) 108 _SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2]) 138 osx_version = tuple(int(i) for i in osx_version.split('.')) 166 cc = oldcc = _config_vars['CC'].split()[0] 199 cv_split = _config_vars[cv].split() 331 compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
| test_recno.py | 226 data = "The quick brown fox jumped over the lazy dog".split() 240 print text.split('\n') 242 self.assertEqual(text.split('\n'), data) 261 print text.split('\n') 263 self.assertEqual(text.split('\n'), 264 "The quick reddish-brown fox jumped over the comatose dog".split())
|