/third_party/flatbuffers/rust/flexbuffers/src/builder/ |
D | ser.rs | 100 fn serialize_element<T: ?Sized>(&mut self, value: &T) -> Result<(), Self::Error> in serialize_element() 115 fn serialize_key<T: ?Sized>(&mut self, key: &T) -> Result<(), Self::Error> in serialize_key() 121 fn serialize_value<T: ?Sized>(&mut self, value: &T) -> Result<(), Self::Error> in serialize_value() 134 fn serialize_element<T: ?Sized>(&mut self, value: &T) -> Result<(), Self::Error> in serialize_element() 147 fn serialize_field<T: ?Sized>(&mut self, value: &T) -> Result<(), Self::Error> in serialize_field() 160 fn serialize_field<T: ?Sized>( in serialize_field() 178 fn serialize_field<T: ?Sized>(&mut self, value: &T) -> Result<(), Self::Error> in serialize_field() 192 fn serialize_field<T: ?Sized>( in serialize_field() 283 fn serialize_some<T: ?Sized>(self, t: &T) -> Result<Self::Ok, Self::Error> in serialize_some() 306 fn serialize_newtype_struct<T: ?Sized>( in serialize_newtype_struct() [all …]
|
D | push.rs | 38 pub trait Pushable: Sealed + Sized {
|
/third_party/flatbuffers/rust/flexbuffers/src/ |
D | buffer.rs | 6 pub trait Buffer: Deref<Target = [u8]> + Sized { 17 type BufferString: Deref<Target = str> + Sized;
|
/third_party/flatbuffers/include/flatbuffers/ |
D | flexbuffers.h | 218 class Sized : public Object { 221 Sized(const uint8_t *data, uint8_t byte_width) in Sized() function 224 Sized(const uint8_t *data, uint8_t byte_width, size_t sz) in Sized() function 236 class String : public Sized { 239 String(const uint8_t *data, uint8_t byte_width) : Sized(data, byte_width) {} in String() 242 : Sized(data, byte_width, sz) {} in String() 255 class Blob : public Sized { 258 : Sized(data_buf, byte_width) {} in Blob() 268 class Vector : public Sized { 270 Vector(const uint8_t *data, uint8_t byte_width) : Sized(data, byte_width) {} in Vector() [all …]
|
/third_party/flatbuffers/rust/flatbuffers/src/ |
D | push.rs | 25 pub trait Push: Sized {
|
D | endian_scalar.rs | 30 pub trait EndianScalar: Sized + PartialEq + Copy + Clone {
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_texture_sRGB_RG8.txt | 82 …Sized Internal Format Base Internal Format R G B A S CR TF Req. rend. … 106 …Sized Internal Format Base Internal Format R G B A S CR TF Req. rend. …
|
D | EXT_texture_norm16.txt | 133 Sized Base Bits/component CR TF Req. Req. 176 Sized Internal Format Base Type Components Norm 0 1 2 3
|
D | EXT_texture_format_BGRA8888.txt | 139 | Sized | Renderable | R | G | B | A | D | S |
|
D | EXT_texture_sRGB_R8.txt | 83 …Sized Internal Format Base Internal Format R G B A S CR TF Req. rend. …
|
/third_party/python/Doc/library/ |
D | collections.abc.rst | 129 :class:`Sized` [1]_ ``__len__`` 131 :class:`Collection` [1]_ :class:`Sized`, ``__contains__``, 168 :class:`MappingView` :class:`Sized` ``__len__`` 210 .. class:: Sized 356 if isinstance(myvar, collections.abc.Sized):
|
/third_party/flatbuffers/java/com/google/flatbuffers/ |
D | FlexBuffers.java | 652 private static abstract class Sized extends Object { class in FlexBuffers 656 Sized(ReadBuf buff, int end, int byteWidth) { in Sized() method in FlexBuffers.Sized 673 public static class Blob extends Sized { 1032 public static class Vector extends Sized {
|
/third_party/python/Lib/test/ |
D | test_functools.py | 1884 c.Collection, c.Sized, c.Iterable, 1890 c.Collection, c.Sized, c.Iterable, 1897 bases = [c.Container, c.Sized, str] 1899 m = mro(collections.defaultdict, [c.Sized, c.Container, str]) 1900 self.assertEqual(m, [collections.defaultdict, dict, c.Sized, 1914 c.Collection, c.Sized, c.Iterable, c.Container, 1923 bases = [c.Sized, c.Callable, c.Container, c.Mapping] 1927 c.Collection, c.Sized, c.Iterable, 1945 g.register(c.Sized, lambda obj: "sized") 2040 expected = [X, c.Callable, D, C, c.Container, B, c.Sized, A, object] [all …]
|
D | test_dictviews.py | 316 self.assertIsInstance(d.keys(), collections.abc.Sized) 322 self.assertIsInstance(d.values(), collections.abc.Sized) 327 self.assertIsInstance(d.items(), collections.abc.Sized)
|
/third_party/python/Lib/ |
D | _collections_abc.py | 373 class Sized(metaclass=ABCMeta): class 383 if cls is Sized: 405 class Collection(Sized, Iterable, Container): 850 class MappingView(Sized):
|
/third_party/flatbuffers/kotlin/flatbuffers-kotlin/src/commonMain/kotlin/com/google/flatbuffers/kotlin/ |
D | FlexBuffers.kt | 520 public open class Sized internal constructor( class 535 ) : Sized(buffer, end, byteWidth) { 574 Sized(buffer, end, byteWidth) { in toString() 710 Sized(buffer, end, byteWidth), in toString()
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_texture_norm16.txt | 133 Sized Base Bits/component CR TF Req. Req. 176 Sized Internal Format Base Type Components Norm 0 1 2 3
|
D | EXT_texture_sRGB_RG8.txt | 70 …Sized Internal Format Base Internal Format R G B A S CR TF Req. rend. …
|
D | EXT_texture_sRGB_R8.txt | 70 …Sized Internal Format Base Internal Format R G B A S CR TF Req. rend. …
|
D | EXT_texture_format_BGRA8888.txt | 139 | Sized | Renderable | R | G | B | A | D | S |
|
/third_party/grpc/test/cpp/util/ |
D | slice_test.cc | 57 TEST_F(SliceTest, Sized) { in TEST_F() argument
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_texture_buffer_object_rgb32.txt | 75 Sized Internal Format Base Type Components Norm Component
|
/third_party/mesa3d/docs/_extra/specs/ |
D | MESA_texture_signed_rgba.spec | 201 Add to Table 3.16 (page 154): Sized internal formats 203 Sized Base R G B A L I D
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_texture_buffer_object_rgb32.txt | 85 Sized Internal Format Base Type Components Norm Component
|
/third_party/flatbuffers/python/flatbuffers/ |
D | flexbuffers.py | 333 class Sized(Object): class 352 class Blob(Sized): 364 class String(Sized): 421 class Vector(Sized): 444 class TypedVector(Sized):
|