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

1 2 3 4 5 6 7 891011>>

  /external/llvm/utils/
DSAextract.py 68 node_set |= set([re.split('\s+',buffer,2)[1]])
98 nodes = arrowexp.split(buffer)
105 node = re.split('\s+', buffer,2)[1]
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/criterion/
CriterionClassFactory.py 72 parsedCriteria = [(typeAndName.split(), allowedValues.split())
74 in (line.split(':') for line in criteriaLines)]
  /external/python/cpython2/Lib/plat-mac/
appletrawmain.py 22 _dir = os.path.split(sys.executable)[0] # removes "python"
23 _dir = os.path.split(_dir)[0] # Removes "MacOS"
27 _dir = os.path.split(sys.argv[0])[0]
  /external/swiftshader/third_party/LLVM/utils/
DSAextract.py 68 node_set |= set([re.split('\s+',buffer,2)[1]])
98 nodes = arrowexp.split(buffer)
105 node = re.split('\s+', buffer,2)[1]
  /external/swiftshader/third_party/subzero/pydir/
bisection-test.py 24 include_range = string.split(':')
32 exclude_range = string.split(':')
43 crash_combination = string.split('x')
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/
appletrawmain.py 22 _dir = os.path.split(sys.executable)[0] # removes "python"
23 _dir = os.path.split(_dir)[0] # Removes "MacOS"
27 _dir = os.path.split(sys.argv[0])[0]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
appletrawmain.py 22 _dir = os.path.split(sys.executable)[0] # removes "python"
23 _dir = os.path.split(_dir)[0] # Removes "MacOS"
27 _dir = os.path.split(sys.argv[0])[0]
  /test/vts-testcase/kernel/api/proc/
ProcMountsTest.py 32 for line in contents.split('\n')[:-1]:
33 parsed = line.split(' ')
34 parsed[3] = parsed[3].split(',')
  /tools/tradefederation/core/prod-tests/src/com/android/ota/tests/
OtaStabilityTestTest.java 31 * Test basic case {@link OtaStabilityTest#split()}, where iterations divide evenly into each
38 Collection<IRemoteTest> shards = test.split();
47 * Test {@link OtaStabilityTest#split()}, where there are more iterations than shards.
53 Collection<IRemoteTest> shards = test.split();
62 * Test {@link OtaStabilityTest#split()}, where iterations does not divide evenly
68 Collection<IRemoteTest> shards = test.split();
  /art/test/071-dexfile-map-clean/src/
Main.java 47 String[] split = nameDescription.split(" "); local
49 String permissions = split[1];
63 String[] lineSplit = lineTrimmed.split(" +");
110 String[] smapsLines = smaps.split("\n");
  /build/make/tools/
product_debug.py 22 # these don't get split
25 return (key, "\n".join(val.split()))
28 words = line.split("=", 1)
35 lines = text.split()
53 groups = re.split("(\\$\\(call " + func_name + ",.*\\))", text)
59 href = s.split(",", 1)[1].strip()[:-1]
  /external/autotest/client/tests/unixbench5/
unixbench5.py 68 subsections = section.split('\n\n')
74 for index, line in enumerate(subsections[1].strip().split('\n')):
82 words = line.lower().split()
88 keyval['score' + suffix] = subsections[2].strip().split()[-1]
95 sections = self.report_data.split('-'*72)
  /external/swiftshader/third_party/LLVM/unittests/ADT/
StringRefTest.cpp 118 TEST(StringRefTest, Split) {
121 Str.split('X'));
123 Str.split('e'));
125 Str.split('h'));
127 Str.split('l'));
129 Str.split('o'));
148 StringRef(",ab,,c,").split(parts, ",", -1, false);
154 StringRef(",ab,,c,").split(parts, ",", -1, true);
159 StringRef("").split(parts, ",", -1, true);
163 StringRef("").split(parts, ",", -1, false)
    [all...]
  /external/v8/tools/generate_shim_headers/
generate_shim_headers.py 77 include_after) = header_spec.split(';', 2)
88 key, value = define.split('=', 1)
96 for header in include_before.split(':'):
106 for header in include_after.split(':'):
111 key, value = define.split('=', 1)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_strop.py 82 split = strop.split
83 self.assertTrue(split("this is the split function")
84 == ['this', 'is', 'the', 'split', 'function'])
85 self.assertTrue(split("a|b|c|d", '|') == ['a', 'b', 'c', 'd'])
86 self.assertTrue(split("a|b|c|d", '|', 2) == ['a', 'b', 'c|d'])
87 self.assertTrue(split("a b c d", None, 1) == ['a', 'b c d'])
88 self.assertTrue(split("a b c d", None, 2) == ['a', 'b', 'c d'])
89 self.assertTrue(split("a b c d", None, 3) == ['a', 'b', 'c', 'd'])
    [all...]
  /external/python/cpython2/Lib/test/
test_strop.py 83 split = strop.split
84 self.assertTrue(split("this is the split function")
85 == ['this', 'is', 'the', 'split', 'function'])
86 self.assertTrue(split("a|b|c|d", '|') == ['a', 'b', 'c', 'd'])
87 self.assertTrue(split("a|b|c|d", '|', 2) == ['a', 'b', 'c|d'])
88 self.assertTrue(split("a b c d", None, 1) == ['a', 'b c d'])
89 self.assertTrue(split("a b c d", None, 2) == ['a', 'b', 'c d'])
90 self.assertTrue(split("a b c d", None, 3) == ['a', 'b', 'c', 'd']
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_strop.py 82 split = strop.split
83 self.assertTrue(split("this is the split function")
84 == ['this', 'is', 'the', 'split', 'function'])
85 self.assertTrue(split("a|b|c|d", '|') == ['a', 'b', 'c', 'd'])
86 self.assertTrue(split("a|b|c|d", '|', 2) == ['a', 'b', 'c|d'])
87 self.assertTrue(split("a b c d", None, 1) == ['a', 'b c d'])
88 self.assertTrue(split("a b c d", None, 2) == ['a', 'b', 'c d'])
89 self.assertTrue(split("a b c d", None, 3) == ['a', 'b', 'c', 'd']
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_strop.py 82 split = strop.split
83 self.assertTrue(split("this is the split function")
84 == ['this', 'is', 'the', 'split', 'function'])
85 self.assertTrue(split("a|b|c|d", '|') == ['a', 'b', 'c', 'd'])
86 self.assertTrue(split("a|b|c|d", '|', 2) == ['a', 'b', 'c|d'])
87 self.assertTrue(split("a b c d", None, 1) == ['a', 'b c d'])
88 self.assertTrue(split("a b c d", None, 2) == ['a', 'b', 'c d'])
89 self.assertTrue(split("a b c d", None, 3) == ['a', 'b', 'c', 'd']
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_strop.py 82 split = strop.split
83 self.assertTrue(split("this is the split function")
84 == ['this', 'is', 'the', 'split', 'function'])
85 self.assertTrue(split("a|b|c|d", '|') == ['a', 'b', 'c', 'd'])
86 self.assertTrue(split("a|b|c|d", '|', 2) == ['a', 'b', 'c|d'])
87 self.assertTrue(split("a b c d", None, 1) == ['a', 'b c d'])
88 self.assertTrue(split("a b c d", None, 2) == ['a', 'b', 'c d'])
89 self.assertTrue(split("a b c d", None, 3) == ['a', 'b', 'c', 'd']
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_strop.py 82 split = strop.split
83 self.assertTrue(split("this is the split function")
84 == ['this', 'is', 'the', 'split', 'function'])
85 self.assertTrue(split("a|b|c|d", '|') == ['a', 'b', 'c', 'd'])
86 self.assertTrue(split("a|b|c|d", '|', 2) == ['a', 'b', 'c|d'])
87 self.assertTrue(split("a b c d", None, 1) == ['a', 'b c d'])
88 self.assertTrue(split("a b c d", None, 2) == ['a', 'b', 'c d'])
89 self.assertTrue(split("a b c d", None, 3) == ['a', 'b', 'c', 'd']
    [all...]
  /cts/hostsidetests/theme/
android_device.py 38 adb_process = subprocess.Popen(args=adb_cmd.split(), bufsize=-1, stderr=PIPE, stdout=PIPE)
84 result = out.split()
90 result = out.split()
99 names = out.split()
118 return int(self.run_shell_command("dumpsys | grep SurfaceOrientation")[0].split()[1])
126 devices = devices.decode('UTF-8').split('\n')[1:]
131 info = device.split('\t')
  /external/boringssl/src/util/
generate-asm-lcov.py 64 source = f.read().split('\n')
79 line = int(l.split(' ')[2]) - 1
83 count = l.split(' ')[0].replace(',', '').replace('.', '0')
84 instruction = l.split(' ', 1)[1].strip()
98 data = [p.strip() for p in data.split(SECTION_SEPERATOR)]
106 filename = data[i].split(':', 1)[1].strip()
113 res = res.split('\n')
  /external/autotest/client/bin/
package.py 71 if len(file_result.split(' ')) == 6:
73 if file_result.split(' ')[3] == 'src':
75 elif file_result.split(' ')[3] == 'bin':
80 package_info['arch'] = file_result.split(' ')[4]
82 package_info['version'] = file_result.split(' ')[5]
83 elif len(file_result.split(' ')) == 5:
85 if file_result.split(' ')[3] == 'src':
87 elif file_result.split(' ')[3] == 'bin':
94 package_info['version'] = file_result.split(' ')[4]
169 parts = line.split()
    [all...]
  /cts/hostsidetests/net/app/src/com/android/cts/net/hostside/
MyVpnService.java 56 String[] addressArray = addresses.split(",");
58 String[] prefixAndMask = addressArray[i].split("/");
72 String[] routeArray = routes.split(",");
74 String[] prefixAndMask = routeArray[i].split("/");
88 String[] packageArray = allowed.split(",");
103 String[] packageArray = disallowed.split(",");
  /cts/tests/tests/permission2/src/android/permission2/cts/
PrivappPermissionsTest.java 126 String[] split = output.substring(1, output.length() - 1).split("\\s*,\\s*"); local
127 return new LinkedHashSet<>(Arrays.asList(split));
137 String[] split = output.substring(1, output.length() - 1).split("\\s*,\\s*"); local
138 return new LinkedHashSet<>(Arrays.asList(split));

Completed in 1117 milliseconds

1 2 3 4 5 6 7 891011>>