Home
last modified time | relevance | path

Searched refs:Sized (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Lib/
D_abcoll.py91 class Sized: class
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/llvm/test/Assembler/
Dinvalid-datalayout5.ll3 ; CHECK: Sized aggregate specification in datalayout string
/external/flatbuffers/include/flatbuffers/
Dflexbuffers.h200 class Sized : public Object {
202 Sized(const uint8_t *data, uint8_t byte_width) : Object(data, byte_width) {} in Sized() function
208 class String : public Sized {
211 : Sized(data, byte_width) {} in String()
223 class Blob : public Sized {
226 : Sized(data, byte_width) {} in Blob()
235 class Vector : public Sized {
238 : Sized(data, byte_width) {} in Vector()
249 class TypedVector : public Sized {
252 : Sized(data, byte_width), type_(element_type) {} in TypedVector()
/external/python/cpython2/Lib/test/
Dtest_dictviews.py180 self.assertIsInstance(d.viewkeys(), collections.Sized)
186 self.assertIsInstance(d.viewvalues(), collections.Sized)
191 self.assertIsInstance(d.viewitems(), collections.Sized)
Dtest_collections.py17 from collections import Sized, Container, Callable
426 self.assertNotIsInstance(x, Sized)
427 self.assertFalse(issubclass(type(x), Sized), repr(type(x)))
433 self.assertIsInstance(x, Sized)
434 self.assertTrue(issubclass(type(x), Sized), repr(type(x)))
435 self.validate_abstract_methods(Sized, '__len__')
436 self.validate_isinstance(Sized, '__len__')
477 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
484 for B in Hashable, Iterable, Iterator, Sized, Container, Callable:
/external/mesa3d/docs/specs/
DMESA_texture_signed_rgba.spec201 Add to Table 3.16 (page 154): Sized internal formats
203 Sized Base R G B A L I D
/external/llvm/docs/
DSegmentedStacks.rst63 Variable Sized Allocas
/external/python/cpython2/Doc/library/
Dcollections.rst900 :class:`Sized` ``__len__``
903 :class:`Sequence` :class:`Sized`, ``__getitem__``, ``__contains__``, ``__ite…
913 :class:`Set` :class:`Sized`, ``__contains__``, ``__le__``, ``__lt__``, `…
923 :class:`Mapping` :class:`Sized`, ``__getitem__``, ``__contains__``, ``keys`…
934 :class:`MappingView` :class:`Sized` ``__len__``
945 Sized
988 if isinstance(myvar, collections.Sized):