Home
last modified time | relevance | path

Searched defs:Struct (Results 1 – 25 of 503) sorted by relevance

12345678910>>...21

/third_party/rust/rust/tests/ui/self/elision/
Dstruct.rs7 struct Struct { } struct
9 impl Struct { implementation
10 fn ref_Struct(self: Struct, f: &u32) -> &u32 { in ref_Struct()
14 fn box_Struct(self: Box<Struct>, f: &u32) -> &u32 { in box_Struct()
18 fn rc_Struct(self: Rc<Struct>, f: &u32) -> &u32 { in rc_Struct()
22 fn box_box_Struct(self: Box<Box<Struct>>, f: &u32) -> &u32 { in box_box_Struct()
26 fn box_rc_Struct(self: Box<Rc<Struct>>, f: &u32) -> &u32 { in box_rc_Struct()
Dref-mut-struct-async.rs7 struct Struct { } struct
9 impl Struct { implementation
12 async fn ref_Struct(self: &mut Struct, f: &u32) -> &u32 { in ref_Struct()
17 async fn box_ref_Struct(self: Box<&mut Struct>, f: &u32) -> &u32 { in box_ref_Struct()
22 async fn pin_ref_Struct(self: Pin<&mut Struct>, f: &u32) -> &u32 { in pin_ref_Struct()
27 async fn box_box_ref_Struct(self: Box<Box<&mut Struct>>, f: &u32) -> &u32 { in box_box_ref_Struct()
32 async fn box_pin_ref_Struct(self: Box<Pin<&mut Struct>>, f: &u32) -> &u32 { in box_pin_ref_Struct()
Dref-struct-async.rs7 struct Struct { } struct
9 impl Struct { implementation
12 async fn ref_Struct(self: &Struct, f: &u32) -> &u32 { in ref_Struct()
17 async fn box_ref_Struct(self: Box<&Struct>, f: &u32) -> &u32 { in box_ref_Struct()
22 async fn pin_ref_Struct(self: Pin<&Struct>, f: &u32) -> &u32 { in pin_ref_Struct()
27 async fn box_box_ref_Struct(self: Box<Box<&Struct>>, f: &u32) -> &u32 { in box_box_ref_Struct()
32 async fn box_pin_Struct(self: Box<Pin<&Struct>>, f: &u32) -> &u32 { in box_pin_Struct()
Dref-struct.rs5 struct Struct { } struct
7 impl Struct { impl
10 fn ref_Struct(self: &Struct, f: &u32) -> &u32 { in ref_Struct()
15 fn box_ref_Struct(self: Box<&Struct>, f: &u32) -> &u32 { in box_ref_Struct()
20 fn pin_ref_Struct(self: Pin<&Struct>, f: &u32) -> &u32 { in pin_ref_Struct()
25 fn box_box_ref_Struct(self: Box<Box<&Struct>>, f: &u32) -> &u32 { in box_box_ref_Struct()
30 fn box_pin_Struct(self: Box<Pin<&Struct>>, f: &u32) -> &u32 { in box_pin_Struct()
Dstruct-async.rs8 struct Struct { } struct
10 impl Struct { implementation
11 async fn ref_Struct(self: Struct, f: &u32) -> &u32 { in ref_Struct()
15 async fn box_Struct(self: Box<Struct>, f: &u32) -> &u32 { in box_Struct()
19 async fn rc_Struct(self: Rc<Struct>, f: &u32) -> &u32 { in rc_Struct()
23 async fn box_box_Struct(self: Box<Box<Struct>>, f: &u32) -> &u32 { in box_box_Struct()
27 async fn box_rc_Struct(self: Box<Rc<Struct>>, f: &u32) -> &u32 { in box_rc_Struct()
Dref-mut-struct.rs5 struct Struct { } struct
7 impl Struct { impl
10 fn ref_Struct(self: &mut Struct, f: &u32) -> &u32 { in ref_Struct()
15 fn box_ref_Struct(self: Box<&mut Struct>, f: &u32) -> &u32 { in box_ref_Struct()
20 fn pin_ref_Struct(self: Pin<&mut Struct>, f: &u32) -> &u32 { in pin_ref_Struct()
25 fn box_box_ref_Struct(self: Box<Box<&mut Struct>>, f: &u32) -> &u32 { in box_box_ref_Struct()
30 fn box_pin_ref_Struct(self: Box<Pin<&mut Struct>>, f: &u32) -> &u32 { in box_pin_ref_Struct()
/third_party/rust/rust/tests/debuginfo/
Ddestructured-local.rs293 struct Struct { struct
316 let (h, i, j) : (i16, Struct, i16) = (8, Struct { a: 9, b: 10 }, 11); in main() argument
319 let Struct { a: k, b: l } = Struct { a: 12, b: 13 }; in main() localVariable
325 let Struct { b: o, .. } = Struct { a: 17, b: 18 }; in main() localVariable
331 let Struct { b: s, a: t } = Struct { a: 23, b: 24 }; in main() localVariable
356 let Struct { b: ref hh, .. } = Struct { a: 49, b: 50 }; in main() localVariable
Ddestructured-for-loop-variable.rs179 struct Struct { struct
187 let s = Struct { in main() argument
/third_party/rust/rust/src/tools/rustfmt/tests/source/
Dissue-4398.rs1 impl Struct { implementation
7 impl Struct { impl
15 impl Struct { implementation
/third_party/rust/rust/src/tools/rustfmt/tests/target/
Dissue-4398.rs1 impl Struct { impl
7 impl Struct { implementation
15 impl Struct { impl
/third_party/rust/rust/tests/ui/resolve/
Dtypo-suggestion-mistyped-in-path.rs1 struct Struct; struct
4 impl Struct { impl
11 struct Struct; struct
13 impl Struct { implementation
/third_party/flatbuffers/net/FlatBuffers/
DStruct.cs22 public struct Struct struct
24 public int bb_pos { get; private set; }
25 public ByteBuffer bb { get; private set; }
28 public Struct(int _i, ByteBuffer _bb) : this() in Struct() method
/third_party/rust/rust/compiler/rustc_serialize/tests/
Dopaque.rs10 struct Struct { struct
11 a: (),
12 b: u8,
13 c: u16,
14 d: u32,
15 e: u64,
16 f: usize,
18 g: i8,
19 h: i16,
20 i: i32,
[all …]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
Dbitfield_pragma_packed.h2 struct Struct { struct
3 unsigned char a : 1;
4 unsigned char b : 1;
5 unsigned char c : 6;
6 unsigned short int d : 16;
7 unsigned char e : 8;
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
Dparm-union.rs4 pub struct Struct { struct
9 ["Size of Struct"][::std::mem::size_of::<Struct>() - 1usize]; argument
14 pub fn Struct_Function(this: *mut Struct, arg1: *mut Union); in Struct_Function()
16 impl Struct { impl
/third_party/rust/rust/tests/ui/span/
Dunused-warning-point-at-identifier.rs12 struct Struct { //~ WARN struct `Struct` is never constructed struct
13 a: usize,
14 b: usize,
15 c: usize,
16 d: usize,
/third_party/rust/rust/tests/ui/associated-types/
Dassociated-types-in-inherent-method.rs8 struct Struct { struct
12 impl Get for Struct { argument
19 impl Struct { implementation
Dassociated-types-no-suitable-bound.rs6 struct Struct { struct
10 impl Struct { impl
/third_party/rust/rust/tests/ui/closures/2229_closure_analysis/run_pass/
Ddisjoint-capture-in-same-closure.rs9 struct Struct { struct
16 let mut s = Struct { x: 10, y: 10, s: String::new() }; in main() argument
/third_party/rust/rust/tests/rustdoc-ui/intra-doc/
Dissue-108653-associated-items-4.rs13 pub struct Struct; struct
15 impl Trait for Struct { implementation
19 impl Struct { implementation
/third_party/rust/rust/tests/ui/suggestions/
Dinner_type2.rs1 pub struct Struct<T> { struct
5 impl<T> Struct<T> { argument
Dinner_type.rs4 pub struct Struct<T> { struct
8 impl<T> Struct<T> { argument
/third_party/rust/rust/tests/ui/issues/auxiliary/
Dissue-9968.rs5 pub struct Struct; struct
6 impl Struct { impl
18 impl Trait for Struct {} implementation
/third_party/rust/rust/src/tools/clippy/tests/ui/pattern_type_mismatch/
Dpattern_structs.rs7 struct Struct<'a> { in struct_types() struct
8 ref_inner: &'a Option<i32>, in struct_types()
13 let Struct { .. } = ref_value; in struct_types() localVariable
19 let Struct { .. } = *ref_value; in struct_types() localVariable
/third_party/rust/rust/tests/ui/generics/
Dissue-95208.rs4 struct Struct<T>(T); struct
6 impl<T> Struct<T> where T:: std::fmt::Display { impl

12345678910>>...21