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

<<41424344454647484950>>

  /prebuilts/gdb/linux-x86/lib/python2.7/
stringold.py 103 # Split a string into a list of space/tab-separated words
104 def split(s, sep=None, maxsplit=0): function
105 """split(str [,sep [,maxsplit]]) -> list of strings
112 (split and splitfields are synonymous)
115 return s.split(sep, maxsplit)
116 splitfields = split
372 Split the argument into words using split, capitalize each
378 return join(map(capitalize, s.split(sep)), sep or ' ')
  /prebuilts/go/darwin-x86/src/runtime/
mem_darwin.go 9 // Don't split the stack as this function may be invoked without a valid G,
29 // Don't split the stack as this function may be invoked without a valid G,
  /prebuilts/go/linux-x86/src/runtime/
mem_darwin.go 9 // Don't split the stack as this function may be invoked without a valid G,
29 // Don't split the stack as this function may be invoked without a valid G,
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/chatserver/
NameReader.java 102 String[] strings = name.split(NEWLINE, 2);
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/chatserver/
NameReader.java 102 String[] strings = name.split(NEWLINE, 2);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
SimpleHTTPServer.py 150 path = path.split('?',1)[0]
151 path = path.split('#',1)[0]
153 words = path.split('/')
158 head, word = os.path.split(word)
stringold.py 103 # Split a string into a list of space/tab-separated words
104 def split(s, sep=None, maxsplit=0): function
105 """split(str [,sep [,maxsplit]]) -> list of strings
112 (split and splitfields are synonymous)
115 return s.split(sep, maxsplit)
116 splitfields = split
372 Split the argument into words using split, capitalize each
378 return join(map(capitalize, s.split(sep)), sep or ' ')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
macostools.py 37 dstdir, dstname = os.path.split(dst)
62 head, tail = os.path.split(dst)
83 pardir = os.path.split(dst)[0]
95 mkdirs(os.path.split(dst)[0])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
SimpleHTTPServer.py 150 path = path.split('?',1)[0]
151 path = path.split('#',1)[0]
153 words = path.split('/')
158 head, word = os.path.split(word)
stringold.py 103 # Split a string into a list of space/tab-separated words
104 def split(s, sep=None, maxsplit=0): function
105 """split(str [,sep [,maxsplit]]) -> list of strings
112 (split and splitfields are synonymous)
115 return s.split(sep, maxsplit)
116 splitfields = split
372 Split the argument into words using split, capitalize each
378 return join(map(capitalize, s.split(sep)), sep or ' ')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
defaults.py 47 paths = paths.split(":")
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
AdtConsoleSdkLog.java 43 for (String s : msg.split("\n")) {
WidgetClassLoader.java 132 String[] segments = fqcn.split("\\.");
180 classes = line.substring(1).split(" ");
188 classes = line.substring(1).split(" ");
196 classes = line.substring(1).split(" ");
  /test/suite_harness/common/host-side/util/src/com/android/compatibility/common/util/
CpuFeatures.java 68 String[] kernelVersion = uname(device, UNAME_OPTION_KERNEL_RELEASE).split(Pattern.quote("."));
  /test/vts/harnesses/tradefed/src/com/android/tradefed/targetprep/
VtsHalAdapterPreparer.java 108 for (String line : out.split("\n")) {
113 String interfaceInstance = line.split(HAL_INTERFACE_SEP, 2)[1];
117 String interfaceName = interfaceInstance.split(HAL_INSTANCE_SEP, 2)[0];
118 String instanceName = interfaceInstance.split(HAL_INSTANCE_SEP, 2)[1];
  /test/vts/runners/host/
logger.py 52 date, time = t.split(' ')
53 month, day = date.split('-')
54 h, m, s = time.split(':')
55 s, ms = s.split('.')
  /test/vts/testcases/template/gtest_binary_test/
gtest_binary_test.py 114 for line in cmd_results[const.STDOUT][1].split('\n'):
119 test_name = line.split('#')[0].strip()
176 for line in stderr.split('\n'):
187 for line in stdout.split('\n'):
  /test/vts/utils/python/performance/
benchmark_parser.py 71 name = bm[self._NAME].split("/", 1)
  /test/vts-testcase/kernel/api/proc/
ProcMapsTest.py 58 lines = contents.split('\n')
ProcMemInfoTest.py 79 lines = contents.split('\n')
ProcQtaguidCtrlTest.py 30 lines = contents.split('\n')
  /toolchain/binutils/binutils-2.27/gold/testsuite/
split_s390_1_z1.s 37 .section .note.GNU-split-stack,"",@progbits
split_s390_1_z2.s 39 .section .note.GNU-split-stack,"",@progbits
split_s390_1_z3.s 41 .section .note.GNU-split-stack,"",@progbits
split_s390_1_z4.s 41 .section .note.GNU-split-stack,"",@progbits

Completed in 1543 milliseconds

<<41424344454647484950>>