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

<<81828384858687888990>>

  /build/soong/python/scripts/
stub_template_host.txt 17 search_path = os.getenv('PATH', os.defpath).split(os.pathsep)
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/result/
ResultReporter.java 493 Collections.addAll(allExpectedModules, value.split(","));
696 String fingerprintPrefix = buildFingerprintOverride.split(":")[0];
697 String fingerprintTail = buildFingerprintOverride.split(":")[1];
698 String buildIdOverride = fingerprintTail.split("/")[1];
700 String brandOverride = fingerprintPrefix.split("/")[0];
702 String deviceOverride = fingerprintPrefix.split("/")[2];
704 String productOverride = fingerprintPrefix.split("/")[1];
706 String versionOverride = fingerprintTail.split("/")[0];
    [all...]
  /cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/retry/
RetryFactoryTest.java 149 public Collection<IRemoteTest> split(int shardCountHint) { method in class:RetryFactoryTest
152 return test.split(shardCountHint);
  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/
JarHostTestTest.java 131 * Test that {@link JarHostTest#split()} inherited from {@link HostTest} is still good.
139 // sharCount is ignored; will split by number of classes
140 List<IRemoteTest> res = (List<IRemoteTest>)mTest.split(1);
147 * Test that {@link JarHostTest#split()} can split classes coming from a jar.
154 // sharCount is ignored; will split by number of classes
155 List<IRemoteTest> res = (List<IRemoteTest>)mTest.split(1);
166 * Test that {@link JarHostTest#getTestShard(int, int)} can split classes coming from a jar.
  /cts/hostsidetests/atrace/src/android/atrace/cts/
AtraceHostTest.java 159 String[] lines = output.split("\\r?\\n");
174 String[] categories = output.split("\\r?\\n");
  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
BaseDeviceAdminServiceTest.java 207 for (String line : commandOutput.split("\r*\n")) {
217 for (String line : commandOutput.split("\r*\n")) {
  /cts/hostsidetests/services/activityandwindowmanager/util/src/android/server/cts/
ActivityManagerTestBase.java 123 "am supports-split-screen-multi-window";
404 * @param toSide Launch to side in split-screen.
518 for (String line : output.split("\\n")) {
528 for (String line : output.split("\\n")) {
531 for (String word : line.split("\\s+")) {
533 final String withColon = word.split("=")[1];
595 for (String feature: output.split("\\s+")) {
597 String[] tokens = feature.split(":");
615 for (String line : outputReceiver.getOutput().split("\\n")) {
    [all...]
  /cts/hostsidetests/sustainedperf/src/android/SustainedPerformance/cts/
SustainedPerformanceHostTest.java 122 Double time = Double.parseDouble(line.split(":")[1]);
183 testString = line.split(":")[1].trim();
  /development/ndk/
unify_all.py 131 basename = os.path.split(platform_path)[-1]
133 return int(basename.split('-')[1])
  /development/samples/ApiDemos/src/com/example/android/apis/
ApiDemos.java 73 prefixPath = prefix.split("/");
90 String[] labelPath = label.split("/");
  /development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/
CubeWallpaper2.java 128 String [] coord = p[i].split(" ");
140 String [] idx = l[i].split(" ");
  /development/samples/ToyVpn/src/com/example/android/toyvpn/
ToyVpnConnection.java 285 for (String parameter : parameters.split(" ")) {
286 String[] fields = parameter.split(",");
  /development/tools/privapp_permissions/
privapp_permissions.py 144 rawLines = txt.split('\n')
165 rawLines = txt.split('\n')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
re.py 82 split Split a string by the occurrences of a pattern.
113 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
168 def split(pattern, string, maxsplit=0, flags=0): function
169 """Split the source string by the occurrences of the pattern,
171 return _compile(pattern, flags).split(string, maxsplit)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
eqfix.py 89 head, tail = os.path.split(filename)
106 words = string.split(line[2:])
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
dir_util.py 49 (head, tail) = os.path.split(name)
53 (head, tail) = os.path.split(head)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
re.py 82 split Split a string by the occurrences of a pattern.
109 __all__ = [ "match", "search", "sub", "subn", "split", "findall",
164 def split(pattern, string, maxsplit=0, flags=0): function
165 """Split the source string by the occurrences of the pattern,
167 return _compile(pattern, flags).split(string, maxsplit)
robotparser.py 106 line = line.split(':', 1)
189 # split the name token and make it lower case
190 useragent = useragent.split("/")[0].lower()
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
TargetTxtClassObject.py 74 # @param KeySplitCharacter: Key split char, between key name and key value. Key1 = Value1, '=' is the key split char
94 LineList = Line.split(KeySplitCharacter, 1)
126 self.TargetTxtDictionary[Key] = Value.split()
  /external/ImageMagick/MagickCore/
list.c 900 *split;
883 *split; local
1311 *split; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/dfp/
DfpMath.java 42 * @param a string representation to split
45 protected static Dfp[] split(final DfpField field, final String a) { method in class:DfpMath
91 * @param a number to split
92 * @return two elements array containing the split number
94 protected static Dfp[] split(final Dfp a) { method in class:DfpMath
102 /** Multiply two numbers that are split in to two pieces that are
106 * @param a first factor of the multiplication, in split form
107 * @param b second factor of the multiplication, in split form
108 * @return a &times; b, in split form
129 /** Divide two numbers that are split in to two pieces that are meant to be added together
    [all...]
  /external/autotest/client/bin/
setup_job.py 60 test_name = os.path.split(testdir)[-1]
173 requested_tests = options.client_test_setup.split(',')
  /external/autotest/client/cros/
dhcpv6_test_base.py 262 dhcpv6_test_server.DHCPV6_NAME_SERVERS.split(',')
269 dhcpv6_test_server.DHCPV6_DOMAIN_SEARCH.split(',')
  /external/autotest/client/cros/faft/utils/
saft_flashrom_util.py 90 items = line.replace('" ', '"^').split('^')
92 pieces = item.split('=')
  /external/autotest/client/site_tests/firmware_TouchMTB/
fuzzy.py 197 criteria_list = criteria_str.split(',')
201 op, value = c.split()

Completed in 1311 milliseconds

<<81828384858687888990>>