HomeSort by relevance Sort by last modified time
    Searched refs:split (Results 226 - 250 of 7669) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gold/testsuite/
split_s390_1_n1.s 16 .section .note.GNU-split-stack,"",@progbits
split_s390_1_n2.s 15 .section .note.GNU-split-stack,"",@progbits
split_s390x_1_n1.s 16 .section .note.GNU-split-stack,"",@progbits
split_s390x_1_n2.s 15 .section .note.GNU-split-stack,"",@progbits
  /tools/test/connectivity/tools/lab/metrics/
disk_metric.py 44 fields = result.stdout.split()
  /cts/apps/CameraITS/tools/
load_scene.py 39 subprocess.Popen(cmd.split())
60 subprocess.Popen(cmd.split())
68 subprocess.Popen(cmd.split())
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Dictionary.py 35 LineList = Line.split(KeySplitCharacter, 1)
37 Key = LineList[0].split()
40 Dictionary[Key[0]] = LineList[1].replace('\\', '/').split(ValueSplitCharacter)
  /external/autotest/client/cros/
certificate_util.py 40 return output.split('=', 1)[1]
60 self._subject = subject.lstrip(' /').split('/')
69 self._subject_dict = dict(map(lambda x: x.split('=', 1),
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsList.java 33 String[] s = value.split(",");
43 public List<String> split(String value) { method in class:ArgsList.SemiColonSplitter
44 return Arrays.asList(value.split(";"));
  /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')
  /external/tensorflow/tensorflow/tools/pip_package/
pip_smoke_test.py 93 pip_package_dependencies_list = pip_package_dependencies.strip().split("\n")
100 tf_py_test_dependencies_list = tf_py_test_dependencies.strip().split("\n")
134 affected_tests_list = affected_tests.split("\n")[:-2]
  /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]
  /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...]

Completed in 439 milliseconds

1 2 3 4 5 6 7 8 91011>>