/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
_abcoll.py | 15 "Sized", "Container", "Callable",
91 class Sized:
100 if cls is Sized:
139 class Set(Sized, Iterable, Container):
365 class Mapping(Sized, Iterable, Container):
431 class MappingView(Sized):
587 class Sequence(Sized, Iterable, Container):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
_abcoll.py | 15 "Sized", "Container", "Callable",
90 class Sized:
99 if cls is Sized:
138 class Set(Sized, Iterable, Container):
334 class Mapping(Sized, Iterable, Container):
385 class MappingView(Sized):
517 class Sequence(Sized, Iterable, Container):
|
/external/python/cpython2/Lib/ |
_abcoll.py | 15 "Sized", "Container", "Callable", 91 class Sized: 100 if cls is Sized: 139 class Set(Sized, Iterable, Container): 365 class Mapping(Sized, Iterable, Container): 431 class MappingView(Sized): 590 class Sequence(Sized, Iterable, Container):
|
/external/python/cpython3/Lib/ |
_collections_abc.py | 15 "Sized", "Container", "Callable", "Collection", 359 class Sized(metaclass=ABCMeta): 369 if cls is Sized: 388 class Collection(Sized, Iterable, Container): 694 class MappingView(Sized):
|
typing.py | 62 'Sized', [all...] |
/external/scapy/scapy/contrib/ |
http2.py | 41 # Sized must be one of the superclasses of a class implementing __len__ 43 from typing import Optional, List, Union, Callable, Any, Tuple, Sized 45 class Sized(object): pass 635 class HPackStringsInterface(six.with_metaclass(abc.ABCMeta, Sized)): [all...] |
/external/flatbuffers/include/flatbuffers/ |
flexbuffers.h | 216 class Sized : public Object { 218 Sized(const uint8_t *data, uint8_t byte_width) : Object(data, byte_width) {} 224 class String : public Sized { 226 String(const uint8_t *data, uint8_t byte_width) : Sized(data, byte_width) {} 239 class Blob : public Sized { 242 : Sized(data_buf, byte_width) {} 252 class Vector : public Sized { 254 Vector(const uint8_t *data, uint8_t byte_width) : Sized(data, byte_width) {} 265 class TypedVector : public Sized { 268 : Sized(data, byte_width), type_(element_type) { [all...] |
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/ |
R.java | 589 public static final int Sized=0x7f12000e; [all...] |