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

<<21222324252627282930>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_osx_support.py 38 paths = path.split(os.pathsep)
108 _SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2])
138 osx_version = tuple(int(i) for i in osx_version.split('.'))
166 cc = oldcc = _config_vars['CC'].split()[0]
199 cv_split = _config_vars[cv].split()
331 compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_recno.py 226 data = "The quick brown fox jumped over the lazy dog".split()
240 print text.split('\n')
242 self.assertEqual(text.split('\n'), data)
261 print text.split('\n')
263 self.assertEqual(text.split('\n'),
264 "The quick reddish-brown fox jumped over the comatose dog".split())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_osx_support.py 38 paths = path.split(os.pathsep)
108 _SYSTEM_VERSION = '.'.join(m.group(1).split('.')[:2])
138 osx_version = tuple(int(i) for i in osx_version.split('.'))
166 cc = oldcc = _config_vars['CC'].split()[0]
199 cv_split = _config_vars[cv].split()
331 compiler_so = compiler_so + os.environ['ARCHFLAGS'].split()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_recno.py 226 data = "The quick brown fox jumped over the lazy dog".split()
240 print text.split('\n')
242 self.assertEqual(text.split('\n'), data)
261 print text.split('\n')
263 self.assertEqual(text.split('\n'),
264 "The quick reddish-brown fox jumped over the comatose dog".split())
  /art/tools/checker/file_format/c1visualizer/
parser.py 44 return (None, state.lastMethodName + " " + line.split("\"")[1], None)
58 methodName = line.split("\"")[1].strip()
  /build/kati/testcase/tools/
findleaves.py 28 pruneleaves = set(map(lambda x: os.path.split(x)[1], prune))
70 "progName": os.path.split(sys.argv[0])[1],
  /build/make/tools/
findleaves.py 28 pruneleaves = set(map(lambda x: os.path.split(x)[1], prune))
83 "progName": os.path.split(sys.argv[0])[1],
  /cts/common/host-side/tradefed/tests/src/com/android/compatibility/common/tradefed/testtype/retry/
RetryFactoryTestTest.java 65 public Collection<IRemoteTest> split(int shardCountHint) { method in class:RetryFactoryTestTest.VoidCompatibilityTest
117 * Assert that the {@link RetryFactoryTest#split(int)} calls the
118 * {@link CompatibilityTestSuite#split(int)} after applying all the filters.
123 Collection<IRemoteTest> res = mFactory.split(2);
  /cts/tools/utils/
android_api_description_splitter.py 17 # This script is used to split the jdiff xml into several smaller xml files
82 """Split the jdiff xml into several smaller xml files by specified tag.
93 def split(self, tag): member in class:XMLSplitter
153 xmlsplitter.split(sys.argv[3])
  /dalvik/dx/src/com/android/dx/command/annotool/
Main.java 77 for (String p : argParam.split(",")) {
88 for (String p : argParam.split(",")) {
  /development/testrunner/
android_mk.py 57 parts = line.split(self._VAR_DELIMITER)
132 java_libs = java_lib_string.split(' ')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
__init__.py 69 return '_'.join(encoding.translate(_norm_encoding_map).split())
136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1],)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
token.py 98 lines = fp.read().split("\n")
118 format = fp.read().split("\n")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_install_data.py 39 rtwo = os.path.split(two)[-1]
41 rone = os.path.split(one)[-1]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
__init__.py 69 return '_'.join(encoding.translate(_norm_encoding_map).split())
136 entry += (None,)*(6-len(entry)) + (mod.__name__.split(".", 1)[1],)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_dis.py 94 lines = got.split('\n')
96 expected = expected.split("\n")
test_macos.py 55 tp = ln.split()[-1][1:-1]
57 cr = ln.split()[-1][1:-1]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
token.py 100 lines = fp.read().split("\n")
120 format = fp.read().split("\n")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
checkextensions.py 46 for w in w.split():
65 head, tail = os.path.split(w)
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
InfSectionParser.py 79 SubSectionList = str(SectionLine).split(TAB_COMMA_SPLIT)
81 SectionList = SubSection.split(TAB_SPLIT)
  /external/ImageMagick/PerlMagick/demo/
annotate_words.pl 5 # Take the internal string, split it into words and try to annotate each
25 my (@words) = split ' ',$str;
  /external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/
calc.rb 80 ].strip!.split( /\n/ ).map { |line|
81 expr, val = line.strip.split( /\s+=\s+/, 2 )
  /external/autotest/client/common_lib/cros/network/
netblock.py 31 addr_str, prefix_len_str = addr.split('/')
124 self._octets = map(int, addr_str.split('.'))
  /external/autotest/client/profilers/perf/
perf.py 26 for line in perf_help.split('\n'):
30 self.sort_keys = [k.rstrip(",") for k in line.split() if
  /external/autotest/client/site_tests/platform_OSLimits/
platform_OSLimits.py 47 fields = line.split(limits[key])
48 vals = fields[1].split()

Completed in 2027 milliseconds

<<21222324252627282930>>