HomeSort by relevance Sort by last modified time
    Searched refs:split (Results 576 - 600 of 4729) sorted by null

<<21222324252627282930>>

  /cts/hostsidetests/tv/src/com/android/cts/tv/
TvInputManagerHostTest.java 117 testString = line.split(":")[1].trim();
139 for (String feature: commandOutput.split("\\s+")) {
141 String[] tokens = feature.split(":");
  /cts/tools/cts-media-preparer-app/src/android/mediastress/cts/preconditions/app/
MediaPreparerAppTest.java 128 for (String trackFormatString : formatString.split(";")) {
143 for (String entry : trackFormatString.split(",")) {
144 String[] kv = entry.split("=");
  /development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
EncodedStringValue.java 206 * Split this encoded string around matches of the given pattern.
212 public EncodedStringValue[] split(String pattern) { method in class:EncodedStringValue
213 String[] temp = getString().split(pattern);
231 String[] values = src.split(";");
  /device/google/cuttlefish_common/tools/
tombstone_to_line.py 50 details = subprocess.check_output(parms).strip().split(':')
68 for i in range(int(info.line_number.split(' ')[0])):
77 print('{} {}'.format(' ' * indent, ' '.join(source.strip().split())),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
markov.py 48 print 'Input files (default stdin) are split in paragraphs'
49 print 'separated blank lines and each paragraph is split'
80 paralist = text.split('\n\n')
83 words = para.split()
108 words = data.split()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
logmerge.py 75 Split the chunk in parts separated by sep2.
120 tag, rev = line.split()
137 words = dateline.split()
152 words = revline.split()
  /external/autotest/client/cros/cellular/pseudomodem/
client.py 116 arglist = args.split(' ', 1)
147 arglist = args.split(' ')
178 arglist = args.split()
  /external/autotest/client/site_tests/camera_HAL3/
camera_HAL3.py 111 filters = option.split('=')[1]
112 if 'Camera3DeviceTest' in filters.split('-')[0]:
116 if any(name in filters.split('-')[0] for name in
  /external/autotest/client/site_tests/hardware_Badblocks/
hardware_Badblocks.py 108 lines = stdout.split('\n')
119 sublines = line[line.find(':') + 2:].split('\n')
126 min_sec = re.match(r'(\w+):(\w+)', lines[-2].split()[-4])
  /external/autotest/client/site_tests/video_WebRtcPeerConnectionWithCamera/
munge_sdp.js 151 var elements = mLine.split(' ');
176 var elements = mLine.split(' ');
184 return sdp.split('\r\n');
  /external/autotest/client/tests/xfstests/
xfstests.py 57 lines = output.split('\n')
89 lines = output.split('\n')
99 tests = test_failures.split(' ')
  /external/autotest/server/site_tests/kernel_ExternalUsbPeripheralsDetectionTest/
kernel_ExternalUsbPeripheralsDetectionTest.py 44 stdout.strip().split('\n'))
62 tmp = self.host.run(cmd).stdout.strip().split('\n')
144 ignore_status=True).stdout.split('\n')
  /external/autotest/server/site_tests/platform_ExternalUSBBootStress/
platform_ExternalUSBBootStress.py 28 items = lsusb_output.split('\n')
32 columns = item.split(' ')
80 lsb_release = host.run('cat /etc/lsb-release').stdout.split('\n')
  /external/cldr/tools/java/org/unicode/cldr/draft/
UnicodeMapBuilder.java 72 final String[] pieces = semi.split(line);
83 final String[] codes = codelist.split("\\s+");
85 final String[] range = codes[i].split("\\.\\.");
  /external/cldr/tools/scripts/
cldr-svnprops-check.py 108 file_type, string_proplist = propline.split("=", 1)
118 # split on ';' into a list of properties. The negative lookahead and lookbehind
119 # in the split regexp are to prevent matching on ';;', which is an escaped ';'
121 string_proplist = re.split("(?<!;);(?!;)", string_proplist)
125 prop_name, prop_val = prop.split("=", 1)
  /external/grpc-grpc/src/core/lib/debug/
trace.cc 103 static void split(const char* s, char*** ss, size_t* ns) { function
109 split(c + 1, ss, ns);
117 split(s, &strings, &nstrings);
  /external/grpc-grpc/src/python/grpcio_tests/tests/stress/
client.py 90 for test_case_arg in test_case_args.split(','):
91 name, weight = test_case_arg.split(':', 1)
121 test_server_targets = args.server_addresses.split(',')
  /external/grpc-grpc/tools/profiling/microbenchmarks/
bm_json.py 163 s = rest.split('/')
188 s.split(':')
189 for s in bm['label'].strip().split(' ')
  /external/libaom/libaom/tools/
lint-hunks.py 109 if filename.split(".")[-1] not in ("c", "h", "cc"):
126 for line in lint_out.split("\n"):
127 fields = line.split(":")
  /external/libchrome/mojo/public/tools/bindings/
generate_type_mappings.py 77 typemaps = [s for s in '\n'.join(args).split('--start-typemap\n') if s]
86 for line in typemap.split('\n'):
107 attributes = match_result.group(3).split(',')
  /external/libcxx/utils/libcxx/android/
compiler.py 42 for line in stderr.split('\n'):
67 return [self.path] + shlex.split(cxx_args) + self.extra_cflags
77 return [self.path] + shlex.split(link_args)
  /external/libcxx/utils/libcxx/test/
googlebenchmark.py 16 self.test_sub_dirs = os.path.normcase(str(test_sub_dirs)).split(';')
90 testPath,testName = os.path.split(test.getSourcePath())
94 testPath, namePrefix = os.path.split(testPath)
  /external/libopus/src/
repacketizer_demo.c 67 int merge = 1, split=0; local
90 } else if (strcmp(argv[i], "-split")==0)
91 split = 1;
158 if (!split)
  /external/libvpx/libvpx/tools/
lint-hunks.py 107 if filename.split(".")[-1] not in ("c", "h", "cc"):
124 for line in lint_out.split("\n"):
125 fields = line.split(":")
  /external/ltp/testcases/network/nfsv4/acl/
test_acl.py 23 splitedline = splitedresult[i].split('::')
31 splitedresult = u.split('\n')
34 splitedline = splitedresult[i].split('::')

Completed in 1456 milliseconds

<<21222324252627282930>>