HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 676 - 700 of 1699) sorted by null

<<21222324252627282930>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_ext.py 11 import sys, os, string, re namespace
173 self.library_dirs = string.split(self.library_dirs, os.pathsep)
178 self.rpath = string.split(self.rpath, os.pathsep)
250 # The argument parsing will result in self.define being a string, but
259 # The option for macros to undefine is also a string from the
378 "must be the extension name (a string)")
634 all_dots = string.maketrans('/'+os.sep, '..')
674 ext_path = string.split(ext_name, '.')
    [all...]
install.py 11 import sys, os, string, re namespace
23 from string import maketrans
328 py_version = (string.split(sys.version))[0]
428 opt_name = string.translate(self.negative_opt[opt_name],
432 opt_name = string.translate(opt_name, longopt_xlate)
551 self.extra_path = string.split(self.extra_path, ',')
560 "comma-separated string with 1 or 2 elements")
sdist.py 8 import string namespace
246 string.join(alts, ', '))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
msvccompiler.py 15 import string namespace
150 s = string.replace(s, k, v)
161 i = string.find(sys.version, prefix)
183 i = string.find(sys.version, prefix)
186 j = string.find(sys.version, ")", i)
281 for p in string.split(os.environ['path'], ';'):
286 os.environ['path'] = string.join(self.__paths, ';')
595 for p in string.split(os.environ['Path'],';'):
624 return string.split(self.__macros.sub(d[path]), ";")
626 return string.split(d[path], ";"
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 351 import string namespace
352 sourceline = string.strip(sourceline)
UndoDelegator.py 1 import string namespace
254 alphanumeric = string.ascii_letters + string.digits + "_"
configHandler.py 22 import string namespace
37 cfgFile - string, fully specified configuration file name
300 fgBg - string ('fg'or'bg') or None, if None return a dictionary
326 type - string, 'default' or 'user' theme type
327 themeName - string, theme name
351 'string-foreground':'#000000',
352 'string-background':'#ffffff',
450 virtualEvent - string, name of the virtual event to test for, without
518 keySetName - string, name of key binding set
519 eventStr - string, the virtual event we want the binding for
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 12 the token (a string)
15 the original line (string)
32 import string, re namespace
69 # Tail end of ' string.
71 # Tail end of " string.
73 # Tail end of ''' string.
75 # Tail end of """ string.
78 # Single-line ' or " string.
79 String = group(r"[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*'",
94 PlainToken = group(Number, Funny, String, Name
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 9 import string namespace
47 return string.strip(self.enum)
114 return string.strip(self.type)
137 return string.strip(self.keyword)
176 return "%s %s %s" % (nice(self.obj1), string.strip(self.relo), nice(self.obj2))
204 return "%s" % (string.strip(self.abso))
231 string.strip(self.logc),
234 return "%s(%s)" % (string.strip(self.logc), nice(self.term))
ic.py 7 import string namespace
141 key2 = key[:string.index(key, '\245')+1]
154 key2 = key[:string.index(key, '\245')+1]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Type_Names_Suite.py 26 class string(aetools.ComponentItem): class in inherits:aetools.ComponentItem
27 """string - a string of characters """
30 plain_text = string
32 plain_text = string
191 string._superclassnames = []
192 string._privpropdict = {
194 string._privelemdict = {
388 'TEXT' : string,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_hashlib.py 27 import string namespace
28 h = string.hexdigits
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tokenize.py 9 the token (a string)
12 the original line (string)
29 import string, re namespace
65 # Tail end of ' string.
67 # Tail end of " string.
69 # Tail end of ''' string.
71 # Tail end of """ string.
74 # Single-line ' or " string.
75 String = group(r"[uUbB]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*'",
90 PlainToken = group(Number, Funny, String, Name
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
Cookie.py 88 The load() method of a Cookie extracts cookies from a string. In a
98 within a string. Escaped quotation marks, nested semicolons, and other
136 the value to a string, when the values are set dictionary-style.
140 >>> C["string"] = "seven"
143 >>> C["string"].value
146 'Set-Cookie: number=7\r\nSet-Cookie: string=seven'
160 >>> C["string"] = "seven"
163 >>> C["string"].value
166 'Set-Cookie: number="I7\\012."\r\nSet-Cookie: string="S\'seven\'\\012p1\\012."'
177 Python string. String objects are *not* serialized. Similarly
213 import string namespace
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_associate.py 5 import sys, os, string namespace
test_dbshelve.py 5 import os, string, sys namespace
62 for x in string.letters:
63 d[self.mk('S' + x)] = 10 * x # add a string
142 self.assertEqual(d.get(self.mk('bad key'), 'a string'), 'a string')
350 self.key_map = {} # map string keys to the number we gave them
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_ext.py 11 import sys, os, string, re namespace
173 self.library_dirs = string.split(self.library_dirs, os.pathsep)
178 self.rpath = string.split(self.rpath, os.pathsep)
250 # The argument parsing will result in self.define being a string, but
259 # The option for macros to undefine is also a string from the
378 "must be the extension name (a string)")
634 all_dots = string.maketrans('/'+os.sep, '..')
674 ext_path = string.split(ext_name, '.')
    [all...]
install.py 11 import sys, os, string, re namespace
23 from string import maketrans
328 py_version = (string.split(sys.version))[0]
428 opt_name = string.translate(self.negative_opt[opt_name],
432 opt_name = string.translate(opt_name, longopt_xlate)
551 self.extra_path = string.split(self.extra_path, ',')
560 "comma-separated string with 1 or 2 elements")
sdist.py 8 import string namespace
246 string.join(alts, ', '))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
msvccompiler.py 15 import string namespace
150 s = string.replace(s, k, v)
161 i = string.find(sys.version, prefix)
183 i = string.find(sys.version, prefix)
186 j = string.find(sys.version, ")", i)
281 for p in string.split(os.environ['path'], ';'):
286 os.environ['path'] = string.join(self.__paths, ';')
595 for p in string.split(os.environ['Path'],';'):
624 return string.split(self.__macros.sub(d[path]), ";")
626 return string.split(d[path], ";"
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
Debugger.py 351 import string namespace
352 sourceline = string.strip(sourceline)
UndoDelegator.py 1 import string namespace
254 alphanumeric = string.ascii_letters + string.digits + "_"
configHandler.py 22 import string namespace
37 cfgFile - string, fully specified configuration file name
300 fgBg - string ('fg'or'bg') or None, if None return a dictionary
326 type - string, 'default' or 'user' theme type
327 themeName - string, theme name
351 'string-foreground':'#000000',
352 'string-background':'#ffffff',
450 virtualEvent - string, name of the virtual event to test for, without
518 keySetName - string, name of key binding set
519 eventStr - string, the virtual event we want the binding for
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
tokenize.py 12 the token (a string)
15 the original line (string)
32 import string, re namespace
69 # Tail end of ' string.
71 # Tail end of " string.
73 # Tail end of ''' string.
75 # Tail end of """ string.
78 # Single-line ' or " string.
79 String = group(r"[uU]?[rR]?'[^\n'\\]*(?:\\.[^\n'\\]*)*'",
94 PlainToken = group(Number, Funny, String, Name
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_hashlib.py 27 import string namespace
28 h = string.hexdigits

Completed in 966 milliseconds

<<21222324252627282930>>