Home
last modified time | relevance | path

Searched defs:Array (Results 1 – 25 of 286) sorted by relevance

12345678910>>...12

/third_party/rust/rust/tests/ui/issues/
Dissue-28561.rs3 struct Array<T> { struct
4 f00: [T; 00],
5 f01: [T; 01],
6 f02: [T; 02],
7 f03: [T; 03],
8 f04: [T; 04],
9 f05: [T; 05],
10 f06: [T; 06],
11 f07: [T; 07],
12 f08: [T; 08],
[all …]
Dissue-69683.rs2 type Array; typedef
6 type Array = T; typedef
10 type Array = [T::Array; 3]; typedef
17 fn foo(self, x: <u8 as Element<I>>::Array); in foo()
24 fn foo(self, _: <u8 as Element<I>>::Array) {} in foo()
Dissue-39970.rs1 trait Array<'a> { trait
9 impl<'a> Array<'a> for () { impl
/third_party/rust/rust/tests/ui/codegen/
Dmono-impossible-2.rs11 pub trait Array { interface
17 impl Array for () { impl
Dmono-impossible.rs11 pub trait Array<'a> {} trait
/third_party/rust/rust/tests/ui/associated-types/
Dissue-44153.rs1 pub trait Array { trait
9 impl Array for () { impl
/third_party/rust/rust/tests/rustdoc/const-generics/
Dconst-generic-slice.rs3 pub trait Array { interface
9 impl<T, const N: usize> Array for [T; N] { impl
/third_party/flatbuffers/rust/flatbuffers/src/
Darray.rs25 pub struct Array<'a, T: 'a, const N: usize>(&'a [u8], PhantomData<T>); struct
27 impl<'a, T: 'a, const N: usize> Debug for Array<'a, T, N> implementation
39 impl<'a, T: 'a, const N: usize> Array<'a, T, N> { impl
63 impl<'a, T: Follow<'a> + 'a, const N: usize> Array<'a, T, N> { implementation
88 impl<'a, T: Follow<'a> + 'a, const N: usize> Follow<'a> for Array<'a, T, N> { implementation
117 impl<'a, T: Follow<'a> + 'a, const N: usize> IntoIterator for Array<'a, T, N> { implementation
147 impl<'a, T: 'a, const N: usize> serde::ser::Serialize for Array<'a, T, N> implementation
/third_party/rust/rust/tests/ui/transmutability/arrays/
Dshould_have_correct_length.rs19 type Array = [u8; 0]; in should_have_len_0() typedef
26 type Array = [u8; 1]; in should_have_len_1() typedef
33 type Array = [u8; 2]; in should_have_len_2() typedef
40 type Array = [u8; 3]; in should_have_len_3() typedef
/third_party/rust/rust/tests/ui/transmutability/abstraction/
Dconst_generic_fn.rs20 type Array = [u8; 0]; in len_0() typedef
26 type Array = [u8; 1]; in len_1() typedef
32 type Array = [u8; 2]; in len_2() typedef
38 type Array = [u8; 3]; in len_3() typedef
/third_party/rust/rust/tests/ui/mir/mir-inlining/
Dice-issue-45493.rs4 trait Array { trait
8 fn foo<A: Array>() { in foo()
/third_party/rust/rust/tests/ui/deriving/
Dderiving-clone-array.rs6 struct Array { struct
7 arr: [[u8; 256]; 4]
/third_party/rust/rust/tests/ui/traits/
Dissue-20692.rs1 trait Array: Sized + Copy {} trait
/third_party/rust/rust/tests/ui/const-generics/
Duninferred-consts-during-codegen-2.rs5 struct Array<T>(T); struct
7 impl<T: fmt::Debug, const N: usize> fmt::Debug for Array<[T; N]> { implementation
Duninferred-consts-during-codegen-1.rs5 struct Array<T, const N: usize>([T; N]); struct
7 impl<T: fmt::Debug, const N: usize> fmt::Debug for Array<T, N> { implementation
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DBinaryStreamWriter.h151 template <typename T> Error writeArray(ArrayRef<T> Array) { in writeArray()
168 Error writeArray(VarStreamArray<T, U> Array) { in writeArray()
176 template <typename T> Error writeArray(FixedStreamArray<T> Array) { in writeArray()
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dnon-type-params.hpp4 struct Array { struct
9 using Array16 = Array<T, 16>; argument
/third_party/rust/rust/tests/ui/iterators/
Dinto-iter-on-arrays-2018.rs38 struct Array([i32; 10]); struct
40 impl Deref for Array { implementation
Dinto-iter-on-arrays-2021.rs24 struct Array([i32; 10]); struct
26 impl Deref for Array { implementation
/third_party/skia/third_party/externals/tint/src/reader/spirv/
Dparser_type.h264 struct Array : public Castable<Array, Type> { struct
286 Type const* const type;
288 const uint32_t size;
290 const uint32_t stride;
/third_party/vk-gl-cts/framework/common/
DtcuArray.hpp35 class Array class
38 Array (void) {} in Array() function in tcu::Array
/third_party/rust/rust/tests/ui/higher-ranked/trait-bounds/normalize-under-binder/
Dissue-90612.rs13 struct Array<T>(PhantomData<T>); struct
15 impl<T: 'static> Family for Array<T> { implementation
/third_party/rust/rust/tests/ui/typeck/
Dissue-65611.rs4 pub unsafe trait Array { interface
30 unsafe impl<T> Array for [T; 1] { impl
/third_party/typescript/tests/cases/compiler/
DaugmentArray.ts1 interface Array<T> { interface
/third_party/rust/rust/src/tools/miri/tests/pass/
Darrays.rs40 type Array = [u8; N]; in from() typedef
53 type Array = [u8; N]; in eq() typedef

12345678910>>...12