/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/ |
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...] |
/prebuilts/python/linux-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/linux-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)
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/ |
FmEscapeXmlAttributeMethod.java | 28 * Method invoked by FreeMarker to escape a string such that it can be used 37 String string = args.get(0).toString(); local 38 return new SimpleScalar(XmlUtils.toXmlAttributeValue(string));
|
FmEscapeXmlStringMethod.java | 28 * Method invoked by FreeMarker to escape a string such that it can be placed 29 * as text in a string resource file. 32 *{@code <string>} elements. 40 String string = args.get(0).toString(); local 41 return new SimpleScalar(ValueXmlHelper.escapeResourceString(string));
|
FmEscapeXmlTextMethod.java | 28 * Method invoked by FreeMarker to escape a string such that it can be used 37 String string = args.get(0).toString(); local 38 return new SimpleScalar(XmlUtils.toXmlTextValue(string));
|
FmExtractLettersMethod.java | 26 * Method invoked by FreeMarker to extract letters from a string; this will remove 35 String string = args.get(0).toString(); local 36 StringBuilder sb = new StringBuilder(string.length()); 37 for (int i = 0, n = string.length(); i < n; i++) { 38 char c = string.charAt(i);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/ |
compat.hpp | 29 #include <string> 251 class string : public vector_ref<const char> { class in namespace:clover::compat 253 string(const char *p) : vector_ref(p, std::strlen(p)) { function in class:clover::compat::string 257 string(const C &v) : vector_ref(v) { function in class:clover::compat::string 260 operator std::string() const { 261 return std::string(begin(), end()); 265 find(const string &s) const {
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
compat.hpp | 29 #include <string> 251 class string : public vector_ref<const char> { class in namespace:clover::compat 253 string(const char *p) : vector_ref(p, std::strlen(p)) { function in class:clover::compat::string 257 string(const C &v) : vector_ref(v) { function in class:clover::compat::string 260 operator std::string() const { 261 return std::string(begin(), end()); 265 find(const string &s) const {
|
/external/skia/tools/lua/ |
skia.lua | 3 function string.startsWith(String,Start) 4 return string.sub(String,1,string.len(Start))==Start 7 function string.endsWith(String,End) 8 return End=='' or string.sub(String,-string.len(End))==En [all...] |
/external/smack/src/org/xbill/DNS/ |
EDNSOption.java | 40 public static String 41 string(int code) { method in class:EDNSOption.Code 52 value(String s) { 68 public String 73 sb.append(EDNSOption.Code.string(code)); 213 abstract String optionToString();
|