HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 226 - 250 of 2901) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/gdb/linux-x86/lib/python2.7/bsddb/test/
test_get_none.py 5 import os, string namespace
29 for x in string.letters:
35 data = d.get(string.letters[0])
36 self.assertEqual(data, string.letters[0]*40)
46 self.assertEqual(count, len(string.letters))
57 for x in string.letters:
63 data = d.get(string.letters[0])
64 self.assertEqual(data, string.letters[0]*40)
80 self.assertEqual(count, len(string.letters))
test_queue.py 5 import os, string namespace
39 for x in string.letters:
42 self.assertEqual(len(d), len(string.letters))
49 self.assertEqual(len(d), len(string.letters)+3)
110 for x in string.letters:
113 self.assertEqual(len(d), len(string.letters))
120 self.assertEqual(len(d), len(string.letters)+3)
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/
extension.py 8 import os, string, sys namespace
32 name : string
35 sources : [string]
41 include_dirs : [string]
44 define_macros : [(name : string, value : string|None)]
46 where 'value' is either the string to define it to or None to
49 undef_macros : [string]
51 library_dirs : [string]
53 libraries : [string]
    [all...]
version.py 15 * the 'parse' method takes a string and parses it to some internal
16 representation; if the string is an invalid version number,
18 * the class constructor takes an optional string argument which,
20 * __str__ reconstructs the string that was passed to 'parse' (or
21 an equivalent string -- ie. one that will generate an equivalent
25 of the same class or a string (which will be parsed to an instance
29 import string, re namespace
49 # __init__ (string) - create and take same action as 'parse'
50 # (string parameter is optional)
51 # parse (string) - convert a string representation to whateve
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
HyperParser.py 11 import string namespace
61 # so that stopatindex can be used to synchronize the string with the
92 """Is the index given to the HyperParser is in a string?"""
142 # This string includes all chars that may be in a white space
144 # This string includes all chars that may be in an identifier
145 _id_chars = string.ascii_letters + string.digits + "_"
146 # This string includes all chars that may be the first char of an identifier
147 _id_first_chars = string.ascii_letters + "_"
149 # Given a string and pos, return the number of chars in the identifie
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_md5.py 11 import string namespace
12 h = string.hexdigits
test_mimetools.py 4 import string namespace
19 start = string.ascii_letters + "=" + string.digits + "\n"
test_pkgimport.py 1 import os, sys, string, random, tempfile, unittest namespace
10 self.package_name += random.choose(string.letters)
62 var += random.choose(string.letters)
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftsnames.h 72 /* platform_id :: The platform ID for `string'. */
74 /* encoding_id :: The encoding ID for `string'. */
76 /* language_id :: The language ID for `string'. */
78 /* name_id :: An identifier for `string'. */
80 /* string :: The `name' string. Note that its format differs */
82 /* be a Pascal String, a UTF-16 one, etc. */
84 /* Generally speaking, the string is not */
88 /* string_len :: The length of `string' in bytes. */
105 FT_Byte* string; /* this string is *not* null-terminated! * member in struct:FT_SfntName_
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
asdl.h 5 typedef PyObject * string; typedef
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 32 import string namespace
87 self.buf = self.buf + string.joinfields(self.buflist, '')
89 i = string.find(self.buf, '\n', self.pos)
138 self.write(string.joinfields(list, ''))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_get_none.py 5 import os, string namespace
29 for x in string.letters:
35 data = d.get(string.letters[0])
36 self.assertEqual(data, string.letters[0]*40)
46 self.assertEqual(count, len(string.letters))
57 for x in string.letters:
63 data = d.get(string.letters[0])
64 self.assertEqual(data, string.letters[0]*40)
80 self.assertEqual(count, len(string.letters))
test_queue.py 5 import os, string namespace
39 for x in string.letters:
42 self.assertEqual(len(d), len(string.letters))
49 self.assertEqual(len(d), len(string.letters)+3)
110 for x in string.letters:
113 self.assertEqual(len(d), len(string.letters))
120 self.assertEqual(len(d), len(string.letters)+3)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
extension.py 8 import os, string, sys namespace
32 name : string
35 sources : [string]
41 include_dirs : [string]
44 define_macros : [(name : string, value : string|None)]
46 where 'value' is either the string to define it to or None to
49 undef_macros : [string]
51 library_dirs : [string]
53 libraries : [string]
    [all...]
version.py 15 * the 'parse' method takes a string and parses it to some internal
16 representation; if the string is an invalid version number,
18 * the class constructor takes an optional string argument which,
20 * __str__ reconstructs the string that was passed to 'parse' (or
21 an equivalent string -- ie. one that will generate an equivalent
25 of the same class or a string (which will be parsed to an instance
29 import string, re namespace
49 # __init__ (string) - create and take same action as 'parse'
50 # (string parameter is optional)
51 # parse (string) - convert a string representation to whateve
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
HyperParser.py 11 import string namespace
61 # so that stopatindex can be used to synchronize the string with the
92 """Is the index given to the HyperParser is in a string?"""
142 # This string includes all chars that may be in a white space
144 # This string includes all chars that may be in an identifier
145 _id_chars = string.ascii_letters + string.digits + "_"
146 # This string includes all chars that may be the first char of an identifier
147 _id_first_chars = string.ascii_letters + "_"
149 # Given a string and pos, return the number of chars in the identifie
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_md5.py 11 import string namespace
12 h = string.hexdigits
test_mimetools.py 4 import string namespace
19 start = string.ascii_letters + "=" + string.digits + "\n"
test_pkgimport.py 1 import os, sys, string, random, tempfile, unittest namespace
10 self.package_name += random.choose(string.letters)
62 var += random.choose(string.letters)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
asdl.h 5 typedef PyObject * string; typedef
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 32 import string namespace
87 self.buf = self.buf + string.joinfields(self.buflist, '')
89 i = string.find(self.buf, '\n', self.pos)
138 self.write(string.joinfields(list, ''))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_get_none.py 5 import os, string namespace
29 for x in string.letters:
35 data = d.get(string.letters[0])
36 self.assertEqual(data, string.letters[0]*40)
46 self.assertEqual(count, len(string.letters))
57 for x in string.letters:
63 data = d.get(string.letters[0])
64 self.assertEqual(data, string.letters[0]*40)
80 self.assertEqual(count, len(string.letters))
test_queue.py 5 import os, string namespace
39 for x in string.letters:
42 self.assertEqual(len(d), len(string.letters))
49 self.assertEqual(len(d), len(string.letters)+3)
110 for x in string.letters:
113 self.assertEqual(len(d), len(string.letters))
120 self.assertEqual(len(d), len(string.letters)+3)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
extension.py 8 import os, string, sys namespace
32 name : string
35 sources : [string]
41 include_dirs : [string]
44 define_macros : [(name : string, value : string|None)]
46 where 'value' is either the string to define it to or None to
49 undef_macros : [string]
51 library_dirs : [string]
53 libraries : [string]
    [all...]
version.py 15 * the 'parse' method takes a string and parses it to some internal
16 representation; if the string is an invalid version number,
18 * the class constructor takes an optional string argument which,
20 * __str__ reconstructs the string that was passed to 'parse' (or
21 an equivalent string -- ie. one that will generate an equivalent
25 of the same class or a string (which will be parsed to an instance
29 import string, re namespace
49 # __init__ (string) - create and take same action as 'parse'
50 # (string parameter is optional)
51 # parse (string) - convert a string representation to whateve
    [all...]

Completed in 1124 milliseconds

1 2 3 4 5 6 7 8 91011>>