HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 501 - 525 of 1323) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/
moduleparam.h 50 char *string; member in struct:kparam_string
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name, param_set_copystring, param_get_string, &__param_string_##name, perm); __MODULE_PARM_TYPE(name, "string")
  /prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/
moduleparam.h 50 char *string; member in struct:kparam_string
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name, param_set_copystring, param_get_string, &__param_string_##name, perm); __MODULE_PARM_TYPE(name, "string")
  /prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/
moduleparam.h 50 char *string; member in struct:kparam_string
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name, param_set_copystring, param_get_string, &__param_string_##name, perm); __MODULE_PARM_TYPE(name, "string")
  /prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/
moduleparam.h 50 char *string; member in struct:kparam_string
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name, param_set_copystring, param_get_string, &__param_string_##name, perm); __MODULE_PARM_TYPE(name, "string")
  /prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/
moduleparam.h 50 char *string; member in struct:kparam_string
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name, param_set_copystring, param_get_string, &__param_string_##name, perm); __MODULE_PARM_TYPE(name, "string")
  /prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/
moduleparam.h 50 char *string; member in struct:kparam_string
71 #define module_param_string(name, string, len, perm) static struct kparam_string __param_string_##name = { len, string }; module_param_call(name, param_set_copystring, param_get_string, &__param_string_##name, perm); __MODULE_PARM_TYPE(name, "string")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cmd.py 20 arguments text, line, begidx, endidx. text is string we are matching
48 import string namespace
53 IDENTCHARS = string.ascii_letters + string.digits + '_'
177 """Parse the line into a command name and a string containing
362 raise TypeError, ("list[i] not a string for i in %s" %
ntpath.py 323 import string namespace
324 varchars = string.ascii_letters + string.digits + '_-'
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 395 'details' is a human-readable string explaining the situation.
398 the string "GCC" (implying that this Python was built with GCC), or the
399 installed "pyconfig.h" contains the string "__GNUC__".
406 import string namespace
409 if string.find(sys.version,"GCC") >= 0:
430 if string.find(s,"__GNUC__") >= 0:
emxccompiler.py 253 'details' is a human-readable string explaining the situation.
256 the string "GCC" (implying that this Python was built with GCC), or the
257 installed "pyconfig.h" contains the string "__GNUC__".
264 import string namespace
267 if string.find(sys.version,"GCC") >= 0:
288 if string.find(s,"__GNUC__") >= 0:
fancy_getopt.py 14 import string namespace
31 longopt_xlate = string.maketrans('-', '_')
117 return string.translate(long_option, longopt_xlate)
171 "must be a string of length >= 2") % long
255 short_opts = string.join(self.short_opts)
408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
411 """wrap_text(text : string, width : int) -> [string]
    [all...]
sysconfig.py 16 import string namespace
59 """Return a string containing the major and minor Python version,
376 'string' according to 'vars' (a dictionary mapping variable names to
378 empty string. The variable values in 'vars' should not contain further
util.py 9 import sys, os, string, re namespace
17 """Return a string that identifies the current platform. This is used
43 i = string.find(sys.version, prefix)
46 j = string.find(sys.version, ")", i)
69 osname = string.lower(osname)
70 osname = string.replace(osname, '/', '')
71 machine = string.replace(machine, ' ', '_')
72 machine = string.replace(machine, '/', '-')
128 paths = string.split(pathname, '/')
198 """Perform shell/Perl-style variable substitution on 'string'. Ever
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
MultiCall.py 33 import string namespace
255 """Get a string which should describe an event sequence. If it is
258 string if there is one. If the parsing is unsuccessful, return None.
262 words = string.split(sequence[1:-1], '-')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
buildtools.py 9 import string namespace
100 if string.lower(filename[-3:]) == ".py":
365 lcname = string.lower(name)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_string.py 1 import unittest, string namespace
13 realresult = getattr(string, methodname)(object, *args)
22 getattr(string, methodname),
28 getattr(string, methodname)(object, *args)
70 string.whitespace
71 string.lowercase
72 string.uppercase
73 string.letters
74 string.digits
75 string.hexdigit
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cmd.py 20 arguments text, line, begidx, endidx. text is string we are matching
48 import string namespace
53 IDENTCHARS = string.ascii_letters + string.digits + '_'
177 """Parse the line into a command name and a string containing
362 raise TypeError, ("list[i] not a string for i in %s" %
ntpath.py 323 import string namespace
324 varchars = string.ascii_letters + string.digits + '_-'
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
cygwinccompiler.py 395 'details' is a human-readable string explaining the situation.
398 the string "GCC" (implying that this Python was built with GCC), or the
399 installed "pyconfig.h" contains the string "__GNUC__".
406 import string namespace
409 if string.find(sys.version,"GCC") >= 0:
430 if string.find(s,"__GNUC__") >= 0:
emxccompiler.py 253 'details' is a human-readable string explaining the situation.
256 the string "GCC" (implying that this Python was built with GCC), or the
257 installed "pyconfig.h" contains the string "__GNUC__".
264 import string namespace
267 if string.find(sys.version,"GCC") >= 0:
288 if string.find(s,"__GNUC__") >= 0:
fancy_getopt.py 14 import string namespace
31 longopt_xlate = string.maketrans('-', '_')
117 return string.translate(long_option, longopt_xlate)
171 "must be a string of length >= 2") % long
255 short_opts = string.join(self.short_opts)
408 WS_TRANS = string.maketrans(string.whitespace, ' ' * len(string.whitespace))
411 """wrap_text(text : string, width : int) -> [string]
    [all...]
sysconfig.py 16 import string namespace
59 """Return a string containing the major and minor Python version,
376 'string' according to 'vars' (a dictionary mapping variable names to
378 empty string. The variable values in 'vars' should not contain further
util.py 9 import sys, os, string, re namespace
17 """Return a string that identifies the current platform. This is used
43 i = string.find(sys.version, prefix)
46 j = string.find(sys.version, ")", i)
69 osname = string.lower(osname)
70 osname = string.replace(osname, '/', '')
71 machine = string.replace(machine, ' ', '_')
72 machine = string.replace(machine, '/', '-')
128 paths = string.split(pathname, '/')
198 """Perform shell/Perl-style variable substitution on 'string'. Ever
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
MultiCall.py 33 import string namespace
255 """Get a string which should describe an event sequence. If it is
258 string if there is one. If the parsing is unsuccessful, return None.
262 words = string.split(sequence[1:-1], '-')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_string.py 1 import unittest, string namespace
13 realresult = getattr(string, methodname)(object, *args)
22 getattr(string, methodname),
28 getattr(string, methodname)(object, *args)
70 string.whitespace
71 string.lowercase
72 string.uppercase
73 string.letters
74 string.digits
75 string.hexdigit
    [all...]

Completed in 991 milliseconds

<<21222324252627282930>>