| /external/rust/crates/oneshot-uniffi/src/ |
| D | loombox.rs | 4 pub struct Box<T: ?Sized> { struct 8 impl<T> Box<T> { implementation 17 impl<T: ?Sized> Box<T> { implementation 30 impl<T: ?Sized> Drop for Box<T> { implementation 42 unsafe impl<T: Send> Send for Box<T> {} implementation 43 unsafe impl<T: Sync> Sync for Box<T> {} implementation 45 impl<T: ?Sized> core::ops::Deref for Box<T> { implementation 53 impl<T: ?Sized> core::ops::DerefMut for Box<T> { implementation 59 impl<T: ?Sized> borrow::Borrow<T> for Box<T> { implementation 65 impl<T: ?Sized> borrow::BorrowMut<T> for Box<T> { implementation [all …]
|
| /external/armnn/tests/TfLiteYoloV3Big-Armnn/ |
| D | NMS.hpp | 21 struct Box { struct 22 float xmin; /**< X-pos position of the low left coordinate */ 23 float xmax; /**< X-pos position of the top right coordinate */ 24 float ymin; /**< Y-pos position of the low left coordinate */ 25 float ymax; /**< Y-pos position of the top right coordinate */
|
| /external/deqp/external/openglcts/modules/glesext/fragment_shading_rate/ |
| D | esextcFragmentShadingRateAttachmentTests.hpp | 65 struct Box struct in glcts::FragmentShadingRateAttachment 67 bool in(uint32_t xIn, uint32_t yIn) in in() 71 uint32_t x; 72 uint32_t y; 73 uint32_t width; 74 uint32_t height;
|
| /external/cronet/third_party/libc++/src/test/libcxx/ranges/range.adaptors/range.move.wrap/ |
| D | assign.move.pass.cpp | 27 using Box = std::ranges::__movable_box<CopyConstructible>; in test() typedef 54 using Box = std::ranges::__movable_box<CopyConstructibleMovable>; in test() typedef 84 using Box = std::ranges::__movable_box<Copyable>; in test() typedef 113 using Box = std::ranges::__movable_box<MovableNothrowCopyConstructible>; in test() typedef 143 using Box = std::ranges::__movable_box<NothrowCopyConstructible>; in test() typedef 175 using Box = std::ranges::__movable_box<ThrowsOnCopy>; in test_empty_state() typedef
|
| D | ctor.in_place.pass.cpp | 32 using Box = std::ranges::__movable_box<CopyConstructible>; in test() typedef 41 using Box = std::ranges::__movable_box<Copyable>; in test() typedef 50 using Box = std::ranges::__movable_box<NothrowCopyConstructible>; in test() typedef
|
| D | assign.copy.pass.cpp | 27 using Box = std::ranges::__movable_box<CopyConstructible>; in test() typedef 54 using Box = std::ranges::__movable_box<Copyable>; in test() typedef 83 using Box = std::ranges::__movable_box<NothrowCopyConstructible>; in test() typedef 115 using Box = std::ranges::__movable_box<ThrowsOnCopy>; in test_empty_state() typedef
|
| /external/doclava/doclet_adapter/src/test/resources/sample-project/com/example/classes/ |
| D | Tags.java | 88 public static class Box<T> { class in Tags 92 private Box() {} in Box() method in Tags.Box 98 public Box(T storedObject, int price) { in Box() method in Tags.Box
|
| /external/kotlinx.serialization/guide/example/ |
| D | example-serializer-03.kt | 12 class Box<T>(val contents: T) class
|
| D | example-classes-15.kt | 8 class Box<T>(val contents: T) class
|
| D | example-serializer-19.kt | 10 data class Box<T>(val contents: T) class
|
| /external/rust/crates/gdbstub/src/conn/impls/ |
| D | boxed.rs | 5 impl<E> Connection for Box<dyn Connection<Error = E>> { implementation 25 impl<E> Connection for Box<dyn ConnectionExt<Error = E>> { implementation 45 impl<E> ConnectionExt for Box<dyn ConnectionExt<Error = E>> { implementation
|
| /external/snakeyaml/src/test/java/org/yaml/snakeyaml/extensions/compactnotation/ |
| D | Box.java | 16 public class Box { class 23 public Box(String id, String name) { in Box() method in Box
|
| /external/cronet/third_party/quic_trace/src/tools/render/ |
| D | geometry_util.h | 87 struct Box { struct 92 constexpr bool operator==(const Box& lhs, const Box& rhs) { argument
|
| /external/rust/crates/moveit/src/ |
| D | alloc_support.rs | 26 impl<T> AsMove for Box<T> { implementation 41 unsafe impl<T> DerefMove for Box<T> { implementation
|
| /external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/json/polymorphic/ |
| D | JsonNullablePolymorphicTest.kt | 18 data class Box(val i: Int) dataClass
|
| /external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/ |
| D | SerializableClasses.kt | 16 data class Box<T>(val boxed: T) dataClass
|
| D | EncodingExtensionsTest.kt | 11 class Box(val i: Int) class in kotlinx.serialization.EncodingExtensionsTest
|
| /external/rust/crates/config/src/ |
| D | source.rs | 72 impl Clone for Box<dyn AsyncSource + Send + Sync> { implementation 78 impl Clone for Box<dyn Source + Send + Sync> { implementation 104 impl Source for [Box<dyn Source + Send + Sync>] { implementation
|
| /external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/json/ |
| D | SpecialFloatingPointValuesTest.kt | 15 data class Box(val d: Double, val f: Float) { dataClass
|
| /external/rust/crates/clap/src/ |
| D | derive.rs | 397 impl<T: Parser> Parser for Box<T> { implementation 423 impl<T: CommandFactory> CommandFactory for Box<T> { implementation 432 impl<T: FromArgMatches> FromArgMatches for Box<T> { implementation 447 impl<T: Args> Args for Box<T> { implementation 456 impl<T: Subcommand> Subcommand for Box<T> { implementation
|
| /external/rust/crates/mls-rs-codec/src/ |
| D | lib.rs | 71 impl<T> MlsSize for Box<T> implementation 109 impl<T> MlsEncode for Box<T> implementation 124 impl<T> MlsDecode for Box<T> implementation
|
| /external/kotlinx.atomicfu/atomicfu/src/commonTest/kotlin/kotlinx/atomicfu/test/ |
| D | ArrayElementInlineFuncTest.kt | 12 private data class Box(val n: Int) in <lambda>() dataClass
|
| D | UncheckedCastTest.kt | 38 private data class Box(val b: Int) dataClass
|
| /external/kotlinx.serialization/formats/json-tests/jvmTest/src/kotlinx/serialization/json/ |
| D | GsonCompatibilityTest.kt | 11 data class Box(val d: Double, val f: Float) dataClass
|
| /external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/jsontype/ext/ |
| D | TestSubtypesExternalPropertyMissingProperty.java | 19 static class Box { class in TestSubtypesExternalPropertyMissingProperty 24 public Box() { in Box() method in TestSubtypesExternalPropertyMissingProperty.Box 27 public Box(String type, Fruit fruit) { in Box() method in TestSubtypesExternalPropertyMissingProperty.Box
|