HomeSort by relevance Sort by last modified time
    Searched refs:split (Results 676 - 700 of 6499) sorted by null

<<21222324252627282930>>

  /system/netd/libnetdutils/include/netdutils/
Slice.h 96 inline std::pair<const Slice, const Slice> split(const Slice s, size_t cut) { function in namespace:android::netdutils
103 return std::get<0>(split(s, cut));
108 return std::get<1>(split(s, cut));
  /test/vts/utils/python/cpu/
cpu_frequency_scaling.py 68 stdout_lines = results[const.STDOUT][0].split("\n")
69 stdout_split = stdout_lines[0].split('-')
105 freq = [int(x) for x in results[const.STDOUT][0].split()]
  /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])
  /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/autotest/client/site_tests/desktopui_SonicExtension/
test_utils.py 170 for item in app_version.split():
172 return item.split('/')[1]
194 extra_flags_list = extra_flags.split()
197 return flag.split('=')[1]
341 for line in proc_stat.split('\n'):
343 times = line[4:].strip().split(' ')
  /external/autotest/client/site_tests/platform_MemoryMonitor/
platform_MemoryMonitor.py 71 fields = line.split()
91 headers = [x.lower() for x in lines[0].split()]
182 for line in initctl.split('\n'):
185 fields = line.split()
335 lines = output.split('\n')
364 graph_name = key.split('_')[0]
  /external/devlib/devlib/utils/
rendering.py 125 return self.target.execute('dumpsys SurfaceFlinger --list').split('\r\n')
129 for line in text.split('\n'):
135 parts = line.split()
158 lines = iter(output.split('\n'))
163 return columns_line.split(',')[:-1] # has a trailing ','
200 self.frames.append(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/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/base/packages/Osu/src/com/android/hotspot2/utils/
HTTPRequest.java 75 String[] tokens = authRequestLine.split("[ ,]+");
84 int split = s.indexOf('='); local
85 if (split < 0) {
88 itemMap.put(s.substring(0, split).trim().toLowerCase(),
89 unquote(s.substring(split + 1).trim()));
159 for (String s : value.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);
  /hardware/qcom/display/msm8909/libqdutils/
mdp_version.cpp 103 // For resolutions beyond this, we use dual/split overlay pipes.
125 ALOGE("Unable to read display split node");
390 char split[64] = {0}; local
394 if(fread(split, sizeof(char), 64, fp)) {
395 split[sizeof(split) - 1] = '\0';
396 mSplit.mLeft = atoi(split);
397 ALOGI_IF(mSplit.mLeft, "Left Split=%d", mSplit.mLeft);
398 char *rght = strpbrk(split, " ");
401 ALOGI_IF(mSplit.mRight, "Right Split=%d", mSplit.mRight)
    [all...]
  /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())

Completed in 1590 milliseconds

<<21222324252627282930>>