HomeSort by relevance Sort by last modified time
    Searched defs:namedtuple (Results 1 - 8 of 8) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
collections.py 1 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
236 ### namedtuple
293 def namedtuple(typename, field_names, verbose=False, rename=False): function
296 >>> Point = namedtuple('Point', ['x', 'y'])
700 Point = namedtuple('Point', 'x, y', True)
705 class Point(namedtuple('Point', 'x y')):
716 class Point(namedtuple('Point', 'x y')):
725 Point3D = namedtuple('Point3D', Point._fields + ('z',))
729 TestResults = namedtuple('TestResults', 'failed attempted')
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
collections.py 1 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
234 ### namedtuple
237 def namedtuple(typename, field_names, verbose=False, rename=False): function
240 >>> Point = namedtuple('Point', 'x y')
637 Point = namedtuple('Point', 'x, y', True)
642 class Point(namedtuple('Point', 'x y')):
653 class Point(namedtuple('Point', 'x y')):
662 Point3D = namedtuple('Point3D', Point._fields + ('z',))
666 TestResults = namedtuple('TestResults', 'failed attempted')
  /external/python/cpython2/Lib/
collections.py 5 * namedtuple factory function for creating tuple subclasses with named fields
13 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
248 ### namedtuple
305 def namedtuple(typename, field_names, verbose=False, rename=False): function
308 >>> Point = namedtuple('Point', ['x', 'y'])
712 Point = namedtuple('Point', 'x, y', True)
717 class Point(namedtuple('Point', 'x y')):
728 class Point(namedtuple('Point', 'x y')):
737 Point3D = namedtuple('Point3D', Point._fields + ('z',))
741 TestResults = namedtuple('TestResults', 'failed attempted'
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
collections.py 1 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
231 ### namedtuple
282 def namedtuple(typename, field_names, verbose=False, rename=False): function
285 >>> Point = namedtuple('Point', ['x', 'y'])
663 Point = namedtuple('Point', 'x, y', True)
668 class Point(namedtuple('Point', 'x y')):
679 class Point(namedtuple('Point', 'x y')):
688 Point3D = namedtuple('Point3D', Point._fields + ('z',))
692 TestResults = namedtuple('TestResults', 'failed attempted')
  /prebuilts/gdb/linux-x86/lib/python2.7/
collections.py 1 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
231 ### namedtuple
282 def namedtuple(typename, field_names, verbose=False, rename=False): function
285 >>> Point = namedtuple('Point', ['x', 'y'])
663 Point = namedtuple('Point', 'x, y', True)
668 class Point(namedtuple('Point', 'x y')):
679 class Point(namedtuple('Point', 'x y')):
688 Point3D = namedtuple('Point3D', Point._fields + ('z',))
692 TestResults = namedtuple('TestResults', 'failed attempted')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
collections.py 1 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
231 ### namedtuple
282 def namedtuple(typename, field_names, verbose=False, rename=False): function
285 >>> Point = namedtuple('Point', ['x', 'y'])
663 Point = namedtuple('Point', 'x, y', True)
668 class Point(namedtuple('Point', 'x y')):
679 class Point(namedtuple('Point', 'x y')):
688 Point3D = namedtuple('Point3D', Point._fields + ('z',))
692 TestResults = namedtuple('TestResults', 'failed attempted')
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
collections.py 1 __all__ = ['Counter', 'deque', 'defaultdict', 'namedtuple', 'OrderedDict']
231 ### namedtuple
282 def namedtuple(typename, field_names, verbose=False, rename=False): function
285 >>> Point = namedtuple('Point', ['x', 'y'])
663 Point = namedtuple('Point', 'x, y', True)
668 class Point(namedtuple('Point', 'x y')):
679 class Point(namedtuple('Point', 'x y')):
688 Point3D = namedtuple('Point3D', Point._fields + ('z',))
692 TestResults = namedtuple('TestResults', 'failed attempted')
  /external/python/cpython3/Lib/collections/
__init__.py 5 * namedtuple factory function for creating tuple subclasses with named fields
17 __all__ = ['deque', 'defaultdict', 'namedtuple', 'UserDict', 'UserList',
304 ### namedtuple
359 def namedtuple(typename, field_names, *, verbose=False, rename=False, module=None): function
362 >>> Point = namedtuple('Point', ['x', 'y'])
    [all...]

Completed in 227 milliseconds