Searched
refs:tuple (Results
1251 -
1275 of
2452) sorted by null
<<51525354555657585960>>
| /external/python/cpython2/Lib/distutils/command/ |
| upload.py | 149 if isinstance(value, tuple):
|
| /external/python/cpython2/Lib/distutils/tests/ |
| support.py | 93 if isinstance(path, (list, tuple)):
|
| /external/python/cpython2/Lib/email/ |
| utils.py | 89 """The inverse of parseaddr(), this takes a 2-tuple of the form 225 Return a tuple of realname and email address, unless the parse fails, in 226 which case return a 2-tuple of ('', ''). 283 # 3-tuple of the continuation number, the string value, and a flag 329 if isinstance(value, tuple):
|
| /external/python/cpython2/Lib/logging/ |
| config.py | 343 class ConvertingTuple(tuple, ConvertingMixin): 344 """A converting tuple wrapper.""" 346 value = tuple.__getitem__(self, key) 347 # Can't replace a tuple entry. 454 isinstance(value, tuple): 486 value = tuple(value) [all...] |
| /external/python/cpython2/Lib/plat-mac/ |
| PixMapWrapper.py | 158 Qd.CopyBits(self.PixMap(), port.GetPortBitMapForCopyBits(), src, tuple(dest),
|
| /external/python/cpython2/Lib/test/ |
| test__osx_support.py | 112 mac_ver_tuple = tuple(int(i) for i in
|
| test_imageop.py | 14 VALUES = tuple( -x for x in reversed(_VALUES) ) + (0,) + _VALUES 180 """return a tuple consisting of
|
| test_iterlen.py | 112 self.it = iter(tuple(xrange(n)))
|
| test_robotparser.py | 25 if isinstance(url, tuple):
|
| /external/python/cpython2/Tools/scripts/ |
| mailerdaemon.py | 42 # If a tuple, the tuple should contain 2 re's. The first re finds a 74 x = tuple(xl)
|
| /external/python/cpython3/Lib/distutils/command/ |
| upload.py | 154 if type(value) is tuple:
|
| /external/python/cpython3/Lib/email/ |
| message.py | 44 three tuple (charset, language, value), it will be encoded according 50 # A tuple is used for RFC 2231 encoded parameter values where items 53 if isinstance(value, tuple): 97 # Message.get_params() are both currently defined to return the tuple in 99 if isinstance(value, tuple): 525 three-tuple of (charset, language, value), in which case it will be 678 value can either be a string, or a 3-tuple if the parameter was RFC 679 2231 encoded. When it's a 3-tuple, the elements of the value are of 684 the 3-tuple) is always unquoted, unless unquote is set to False. 721 if not isinstance(value, tuple) and charset [all...] |
| /external/python/cpython3/Lib/idlelib/ |
| debugobj.py | 107 tuple: SequenceTreeItem,
|
| /external/python/cpython3/Lib/logging/ |
| config.py | 344 class ConvertingTuple(tuple, ConvertingMixin): 345 """A converting tuple wrapper.""" 347 value = tuple.__getitem__(self, key) 348 # Can't replace a tuple entry. 449 isinstance(value, tuple): 481 value = tuple(value) [all...] |
| /external/python/cpython3/Lib/ |
| plistlib.py | 436 elif isinstance(value, (tuple, list)): 584 return tuple(int.from_bytes(data[i: i + size], 'big') 794 elif isinstance(value, (list, tuple)): 878 elif isinstance(value, (list, tuple)):
|
| /external/python/cpython3/Lib/test/ |
| test__osx_support.py | 111 mac_ver_tuple = tuple(int(i) for i in
|
| test_iterlen.py | 97 self.it = iter(tuple(range(n)))
|
| test_resource.py | 125 return len(tuple(range(1000000)))
|
| /external/python/cpython3/Lib/xml/etree/ |
| ElementPath.py | 268 else tuple(sorted(namespaces.items())))
|
| /external/python/cpython3/Tools/scripts/ |
| mailerdaemon.py | 47 # If a tuple, the tuple should contain 2 re's. The first re finds a 79 x = tuple(xl)
|
| /external/python/pyasn1/pyasn1/type/ |
| tag.py | 43 *Tag* objects are immutable and duck-type Python :class:`tuple` objects 157 *TagSet* objects are immutable and duck-type Python :class:`tuple` objects 188 self.__superTagsClassId = tuple( 257 : :py:class:`tuple` 258 Tuple of :class:`~pyasn1.type.tag.Tag` objects that this *TagSet* contains
|
| /external/python/pyasn1-modules/pyasn1_modules/ |
| rfc3279.py | 16 for x in tuple(components):
|
| /external/python/setuptools/setuptools/command/ |
| sdist.py | 41 READMES = tuple('README{0}'.format(ext) for ext in README_EXTENSIONS)
|
| upload_docs.py | 113 if isinstance(value, tuple):
|
| /external/skia/src/sksl/ |
| SkSLMetalCodeGenerator.h | 12 #include <tuple>
|
Completed in 1943 milliseconds
<<51525354555657585960>>