| /third_party/rust/rust/library/alloc/src/ |
| D | boxed.rs | 195 pub struct Box< struct 200 impl<T> Box<T> { implementation 360 impl<T, A: Allocator> Box<T, A> { implementation 602 impl<T> Box<[T]> { impl 721 impl<T, A: Allocator> Box<[T], A> { implementation 781 impl<T, A: Allocator> Box<mem::MaybeUninit<T>, A> { implementation 854 impl<T, A: Allocator> Box<[mem::MaybeUninit<T>], A> { implementation 893 impl<T: ?Sized> Box<T> { impl 943 impl<T: ?Sized, A: Allocator> Box<T, A> { implementation 1213 unsafe impl<#[may_dangle] T: ?Sized, A: Allocator> Drop for Box<T, A> { implementation [all …]
|
| /third_party/rust/rust/tests/ui/associated-types/ |
| D | associated-type-projection-ambig-between-bound-and-where-clause.rs | 10 pub trait Box { interface 20 fn b<C>(_: C::Color) where C : Vehicle+Box { in b() 24 fn c<C>(_: C::Color) where C : Vehicle, C : Box { in c() 30 fn d(&self, _: X::Color) where X : Box { } in d() 35 fn e(&self, _: X::Color) where X : Box; in e() 38 fn f(&self, _: X::Color) where X : Box { } in f()
|
| /third_party/rust/rust/tests/ui/self/ |
| D | explicit-self-closures.rs | 7 struct Box { struct 11 impl Box { implementation
|
| /third_party/rust/rust/tests/ui/regions/ |
| D | regions-early-bound-error-method.rs | 8 struct Box<'a> { struct 12 impl<'a> GetRef<'a> for Box<'a> { argument 18 impl<'a> Box<'a> { impl
|
| D | regions-early-bound-used-in-bound-method.rs | 11 struct Box<'a> { struct 15 impl<'a> GetRef<'a> for Box<'a> { implementation 21 impl<'a> Box<'a> { implementation
|
| D | regions-early-bound-used-in-type-param.rs | 11 struct Box<T> { struct 15 impl<T:Clone> Get<T> for Box<T> { argument
|
| D | regions-early-bound-used-in-bound.rs | 11 struct Box<'a, T:'a> { struct 15 impl<'a,T:Clone> GetRef<'a,T> for Box<'a,T> { implementation
|
| D | regions-early-bound-error.rs | 8 struct Box<'a, T:'a> { struct 12 impl<'a,T:Clone> GetRef<'a,T> for Box<'a,T> { argument
|
| /third_party/rust/rust/tests/ui/coherence/ |
| D | impl[t]-foreign[local]-for-fundamental[foreign[t]].rs | 12 impl<T> Remote1<Local> for Box<Rc<T>> {} implementation 13 impl<T, S> Remote1<Local1<S>> for Box<Rc<T>> {} implementation 14 impl<T> Remote1<Box<Local>> for Box<Rc<T>> {} implementation 15 impl<T, S> Remote1<Box<Local1<S>>> for Box<Rc<T>> {} implementation
|
| D | impl-foreign-for-fundamental[foreign].rs | 10 impl Remote for Box<i32> { implementation 14 impl<T> Remote for Box<Rc<T>> { implementation
|
| D | impl-foreign-for-fundamental[local].rs | 12 impl Remote for Box<Local> {} implementation 13 impl<T> Remote for Box<Local1<T>> {} implementation
|
| D | coherence-overlap-negative-trait.rs | 13 impl From<&str> for Box<dyn Error> {} implementation 14 impl<E> From<E> for Box<dyn Error> where E: Error {} implementation
|
| D | coherence_copy_like.rs | 16 impl MyTrait for Box<MyType> { } implementation 17 impl<'a> MyTrait for &'a Box<MyType> { } implementation
|
| /third_party/rust/rust/tests/ui/borrowck/ |
| D | borrowck-scope-of-deref-issue-4666.rs | 7 struct Box { struct 11 impl Box { implementation
|
| /third_party/vk-gl-cts/external/openglcts/modules/glesext/fragment_shading_rate/ |
| D | esextcFragmentShadingRateAttachmentTests.hpp | 65 struct Box struct in glcts::FragmentShadingRateAttachment 67 bool in(deUint32 xIn, deUint32 yIn) in in() 71 deUint32 x; 72 deUint32 y; 73 deUint32 width; 74 deUint32 height;
|
| /third_party/rust/rust/tests/rustdoc/notable-trait/ |
| D | doc-notable_trait_box_is_not_an_iterator.rs | 6 pub struct Box<T>; struct 8 impl<T> Box<T> { implementation 17 impl<I: FakeIterator> FakeIterator for Box<I> {} implementation
|
| /third_party/rust/rust/tests/ui/pattern/usefulness/ |
| D | issue-82772-match-box-as-struct.rs | 4 let Box { 1: _, .. }: Box<()>; //~ ERROR field `1` of in main() localVariable 5 let Box { .. }: Box<()>; in main() localVariable
|
| /third_party/rust/rust/tests/ui/typeck/ |
| D | issue-82772.rs | 5 let Box { 0: _, .. }: Box<()>; //~ ERROR field `0` of in main() localVariable 6 let Box { 1: _, .. }: Box<()>; //~ ERROR field `1` of in main() localVariable
|
| /third_party/rust/rust/tests/ui/type/ |
| D | type-recursive-box-shadowed.rs | 3 struct Box<T> { struct 4 t: T,
|
| /third_party/typescript/tests/cases/conformance/externalModules/typeOnly/ |
| D | exportDeclaration_missingBraces.ts | 9 class Box<T> {} class 18 export type Box; alias
|
| /third_party/typescript/tests/baselines/reference/ |
| D | mappedTypes3.js | 2 class Box<P> { class 43 function Box() { class in Box
|
| /third_party/rust/rust/tests/ui/mir/ |
| D | ssa-analysis-regression-50041.rs | 13 pub struct Box<T: ?Sized>(Unique<T>); struct 15 impl<T: ?Sized> Drop for Box<T> { implementation
|
| /third_party/rust/rust/tests/ui/generic-associated-types/ |
| D | issue-78113-lifetime-mismatch-dyn-trait-box.rs | 7 impl A for Box<dyn A> {} implementation 19 impl C for Box<dyn A + 'static> {} implementation 29 impl E for (Box<dyn A>, Box<dyn A>) {} implementation
|
| /third_party/rust/rust/tests/ui/specialization/ |
| D | non-defaulted-item-fail.rs | 19 impl<T> Foo for Box<T> { implementation 26 impl Foo for Box<i32> {} implementation 29 impl Foo for Box<i64> { implementation
|
| /third_party/rust/rust/tests/ui/traits/new-solver/ |
| D | negative-coherence-bounds.rs | 22 impl<I: Iterator + ?Sized> BoxIter for Box<I> { implementation 34 impl<I: Iterator> BoxIter for Box<I> { implementation
|