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

<<71727374757677787980>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
string.py 48 Split the argument into words using split, capitalize each
53 sep is used to split and join the words.
56 return (sep or ' ').join(x.capitalize() for x in s.split(sep))
282 # Split a string into a list of space/tab-separated words
283 def split(s, sep=None, maxsplit=-1): function
284 """split(s [,sep [,maxsplit]]) -> list of strings
291 (split and splitfields are synonymous)
294 return s.split(sep, maxsplit)
295 splitfields = split
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
makechangelog.py 58 words = string.split(log)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
lpwatch.py 51 fields = line.split()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
_MozillaCookieJar.py 71 line.split("\t")
cgitb.py 107 pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable
163 name = where + strong(name.split('.')[-1])
198 pyver = 'Python ' + sys.version.split()[0] + ': ' + sys.executable
237 elif where != 'local': name = where + name.split('.')[-1]
platform.py 208 tv = string.split(line)
216 values = string.split(value,'-')
224 pkg = string.split(line,'-')
284 l = string.split(string.strip(firstline))
457 l = string.split(version,'.')
882 l = string.split(release,'.')
    [all...]
shlex.py 7 # Posix compliance, split(), string arguments, and
19 __all__ = ["shlex", "split"]
274 def split(s, comments=False, posix=True): function
string.py 48 Split the argument into words using split, capitalize each
53 sep is used to split and join the words.
56 return (sep or ' ').join(x.capitalize() for x in s.split(sep))
280 # Split a string into a list of space/tab-separated words
281 def split(s, sep=None, maxsplit=-1): function
282 """split(s [,sep [,maxsplit]]) -> list of strings
289 (split and splitfields are synonymous)
292 return s.split(sep, maxsplit)
293 splitfields = split
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
config.py 69 index_servers.split('\n')
sysconfig.py 393 elif map(int, cfg_target.split('.')) > map(int, cur_target.split('.')):
420 linkerscript_path = string.split(g['LDSHARED'])[0]
499 major_version = int(kernel_version.split('.')[0])
versionpredicate.py 115 self.pred = [splitUp(aPred) for aPred in str.split(",")]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_import.py 89 imp_name = imp_name.split(u".", 1)[0]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_cmd.py 156 l = s.split()
test_mhlib.py 32 return os.path.join(*f.split('/'))
35 dir = os.path.split(fname)[0]
73 lines = s.split("\n")
82 base, file = os.path.split(fname)
test_multibytecodec_support.py 273 unichrs = lambda s: u''.join(_unichr(c) for c in s.split('+'))
280 data = line.split('#')[0].strip().split()
311 codech = ''.join(chr(int(c, 16)) for c in coded.split())
test_sort.py 175 data = 'The quick Brown fox Jumped over The lazy Dog'.split()
182 data = 'The quick Brown fox Jumped over The lazy Dog'.split()
198 data = 'The quick Brown fox Jumped over The lazy Dog'.split()
203 data = 'The quick Brown fox Jumped over The lazy Dog'.split()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
parsesetup.py 73 words = line.split()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
dutree.py 15 comps = filename.split('/')
ifdef.py 68 words = tmp.split()
xxci.py 58 ignore[:] = ignore + f.read().split()
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
MultipleWorkspace.py 59 cls.PACKAGES_PATH = [cls.convertPackagePath (Ws, os.path.normpath(Path.strip())) for Path in PackagesPath.split(os.pathsep)]
  /external/autotest/client/bin/
fsinfo_unittest.py 114 conf = 'a,b,d,d,d,d,d,e,e,a,f'.split(',')
harness_autoserv.py 78 for line in status.split('\n'):
test.py 57 major, minor = [int(x) for x in result.stdout.strip().split()]
  /external/autotest/client/common_lib/cros/network/
tcpdump_analyzer.py 88 for layer in field.split('.'):

Completed in 889 milliseconds

<<71727374757677787980>>