Home
last modified time | relevance | path

Searched refs:Struct2 (Results 1 – 25 of 589) sorted by relevance

12345678910>>...24

/dports/editors/libreoffice/libreoffice-7.2.6.2/idlc/test/parser/
H A Dpolystruct.tests67 struct Struct2 { Struct1<> member; };
133 struct Struct2 { Struct1<Struct2> member; };
143 struct Struct2<T> { long member; };
149 struct Struct2 { Struct1<sequence<Struct2> > member; };
154 struct Struct2 { Struct1<sequence<sequence<Struct2> > > member; };
159 struct Struct2 { sequence<Struct1<Struct2> > member; };
164 struct Struct2 { sequence<Struct1<sequence<Struct2> > > member; };
169 struct Struct2 { sequence<sequence<Struct1<Struct2> > > member; };
190 struct Struct2<T> { Struct1<Struct2> member; };
195 struct Struct2<T> { long member; };
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/idlc/test/parser/
H A Dpolystruct.tests67 struct Struct2 { Struct1<> member; };
133 struct Struct2 { Struct1<Struct2> member; };
143 struct Struct2<T> { long member; };
149 struct Struct2 { Struct1<sequence<Struct2> > member; };
154 struct Struct2 { Struct1<sequence<sequence<Struct2> > > member; };
159 struct Struct2 { sequence<Struct1<Struct2> > member; };
164 struct Struct2 { sequence<Struct1<sequence<Struct2> > > member; };
169 struct Struct2 { sequence<sequence<Struct1<Struct2> > > member; };
190 struct Struct2<T> { Struct1<Struct2> member; };
195 struct Struct2<T> { long member; };
[all …]
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/constants/gen-swift/test/fixtures/constants/
H A DStruct2.java30 public Struct2( in Struct2() method in Struct2
43 protected Struct2() { in Struct2() method in Struct2
90 public Builder(Struct2 other) { in Builder()
98 public Struct2 build() { in build()
99 Struct2 result = new Struct2 ( in build()
169 Struct2 other = (Struct2)o; in equals()
191 return Struct2::read0; in asReader()
196 oprot.readStructBegin(Struct2.NAMES_TO_IDS, Struct2.FIELD_METADATA); in read0()
197 Struct2.Builder builder = new Struct2.Builder(); in read0()
284 private static final Struct2 _DEFAULT = new Struct2.Builder().build();
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/consts/
H A Doffset_from.rs10 struct Struct2 { struct
27 let uninit = std::mem::MaybeUninit::<Struct2>::uninit(); argument
28 let base_ptr: *const Struct2 = &uninit as *const _ as *const Struct2;
35 let uninit = std::mem::MaybeUninit::<Struct2>::uninit();
36 let base_ptr: *const Struct2 = &uninit as *const _ as *const Struct2;
/dports/audio/carla/Carla-2.4.1/source/tests.old/
H A DExceptions.cpp35 struct Struct2 { struct
36 Struct2() : leakDetector_Struct2() { throw 2; } in Struct2() function
37 ~Struct2() noexcept {} in ~Struct2() argument
39 CARLA_LEAK_DETECTOR(Struct2)
50 Struct2* c2 = nullptr; in main()
70 c2 = new Struct2; in main()
/dports/devel/tinygo/tinygo-0.14.1/testdata/
H A Dbinop.go46 println(s2 == Struct2{"foo", 0.0, 5})
47 println(s2 == Struct2{"foo", 0.0, 7})
48 println(s2 == Struct2{"foo", 1.0, 5})
49 println(s2 == Struct2{"foo", 1.0, 7})
80 var s2 = Struct2{"foo", 0.0, 5}
94 type Struct2 struct { struct
/dports/lang/elixir/elixir-1.12.3/lib/elixir/test/elixir/module/types/
H A Dmap_test.exs99 defmodule :"Elixir.Module.Types.MapTest.Struct2" do
107 %Module.Types.MapTest.Struct2{} = map
123 %Module.Types.MapTest.Struct2{} = map
137 %Module.Types.MapTest.Struct2{} = map
147 %Module.Types.MapTest.Struct2{} = map
211 map = %Module.Types.MapTest.Struct2{field: :a}
212 %Module.Types.MapTest.Struct2{map | field: :b}
241 %Module.Types.MapTest.Struct2{map | field: :b}
257 %Module.Types.MapTest.Struct2{map | field: :b}
261 assert quoted_expr([map], %Module.Types.MapTest.Struct2{map | field: :b}) ==
[all …]
/dports/lang/elixir-devel/elixir-1.13.1/lib/elixir/test/elixir/module/types/
H A Dmap_test.exs99 defmodule :"Elixir.Module.Types.MapTest.Struct2" do
107 %Module.Types.MapTest.Struct2{} = map
123 %Module.Types.MapTest.Struct2{} = map
137 %Module.Types.MapTest.Struct2{} = map
147 %Module.Types.MapTest.Struct2{} = map
211 map = %Module.Types.MapTest.Struct2{field: :a}
212 %Module.Types.MapTest.Struct2{map | field: :b}
241 %Module.Types.MapTest.Struct2{map | field: :b}
257 %Module.Types.MapTest.Struct2{map | field: :b}
261 assert quoted_expr([map], %Module.Types.MapTest.Struct2{map | field: :b}) ==
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/test/debuginfo/
H A Dtype-names.rs286 pub struct Struct2; struct
323 fn rust_fn(_: Option<isize>, _: Option<&mod1::Struct2>) {} in rust_fn() argument
333 unsafe fn unsafe_fn_with_return_value(_: GenericStruct<u16, u8>) -> mod1::Struct2 { in unsafe_fn_with_return_value() argument
334 mod1::Struct2 in unsafe_fn_with_return_value()
356 let generic_struct1: GenericStruct<mod1::Struct2, mod1::mod2::Struct3> = in main()
360 let mod_struct = mod1::Struct2; in main()
367 let generic_enum_1: mod1::mod2::Enum3<mod1::Struct2> = mod1::mod2::Variant1; in main()
371 let tuple1 = (8u32, Struct1, mod1::mod2::Variant2(mod1::Struct2)); in main()
413 let generic_box_trait = Box::new(0_isize) as Box<dyn Trait2<i32, mod1::Struct2>>; in main()
H A Dstruct-namespace.rs32 struct Struct2(u32); struct
41 pub struct Struct2(pub u32); struct
51 let struct2 = Struct2(2); in main()
58 let mod1_struct2 = mod1::Struct2(5); in main()
/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/compiler/test/fixtures/constants/gen-go/module/
H A Dconstants.go43 var Pod_2 *Struct2
44 var PodTrailingCommas *Struct2
45 var PodS_2 *Struct2
177 Pod_2 = &Struct2{
191 PodTrailingCommas = &Struct2{
205 PodS_2 = &Struct2{
222 C: &Struct2{
238 C: &Struct2{
/dports/devel/desed/desed-1.2.0/cargo-crates/pin-project-lite-0.1.10/tests/
H A Dtest.rs64 struct Struct2<I, J> in where_clause_and_associated_type_field()
125 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
197 struct Struct2<'a, T, U> { in lifetime_project()
213 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() impl
234 struct Struct2<'a, T, U> { in lifetime_project_elided()
250 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project_elided() impl
303 pub struct Struct2<T: ?Sized> { in dst()
309 let mut x = Struct2 { f: 0_u8 }; in dst()
310 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
349 struct Struct2 { in dyn_type()
[all …]
/dports/games/abstreet/abstreet-0.2.9-49-g74aca40c0/cargo-crates/pin-project-lite-0.1.5/tests/
H A Dtest.rs65 struct Struct2<I, J> in where_clause_and_associated_type_field()
128 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
200 struct Struct2<'a, T, U> { in lifetime_project()
216 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() implementation
237 struct Struct2<'a, T, U> { in lifetime_project_elided()
253 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project_elided() impl
306 pub struct Struct2<T: ?Sized> { in dst()
312 let mut x = Struct2 { x: 0_u8 }; in dst()
313 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
349 struct Struct2 { in dyn_type()
/dports/games/genact/genact-0.10.0/cargo-crates/pin-project-lite-0.1.7/tests/
H A Dtest.rs65 struct Struct2<I, J> in where_clause_and_associated_type_field()
126 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
198 struct Struct2<'a, T, U> { in lifetime_project()
214 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() implementation
235 struct Struct2<'a, T, U> { in lifetime_project_elided()
251 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project_elided() impl
304 pub struct Struct2<T: ?Sized> { in dst()
310 let mut x = Struct2 { x: 0_u8 }; in dst()
311 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
347 struct Struct2 { in dyn_type()
/dports/net/proby/proby-1.0.2/cargo-crates/pin-project-lite-0.1.7/tests/
H A Dtest.rs65 struct Struct2<I, J> in where_clause_and_associated_type_field()
126 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
198 struct Struct2<'a, T, U> { in lifetime_project()
214 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() implementation
235 struct Struct2<'a, T, U> { in lifetime_project_elided()
251 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project_elided() implementation
304 pub struct Struct2<T: ?Sized> { in dst()
310 let mut x = Struct2 { x: 0_u8 }; in dst()
311 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
347 struct Struct2 { in dyn_type()
/dports/net-im/fractal/fractal-4.4.0/vendor/pin-project-lite/tests/
H A Dtest.rs65 struct Struct2<I, J> in where_clause_and_associated_type_field()
126 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
198 struct Struct2<'a, T, U> { in lifetime_project()
214 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() impl
235 struct Struct2<'a, T, U> { in lifetime_project_elided()
251 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project_elided() implementation
304 pub struct Struct2<T: ?Sized> { in dst()
310 let mut x = Struct2 { x: 0_u8 }; in dst()
311 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
347 struct Struct2 { in dyn_type()
/dports/audio/spotify-tui/spotify-tui-0.25.0/cargo-crates/pin-project-lite-0.1.7/tests/
H A Dtest.rs65 struct Struct2<I, J>
126 pub struct Struct2<'a, T: ::core::fmt::Debug> {
198 struct Struct2<'a, T, U> {
214 impl<'b, T, U> Struct2<'b, T, U> {
235 struct Struct2<'a, T, U> {
251 impl<'b, T, U> Struct2<'b, T, U> {
304 pub struct Struct2<T: ?Sized> {
310 let mut x = Struct2 { x: 0_u8 };
311 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _);
347 struct Struct2 {
/dports/sysutils/tealdeer/tealdeer-1.4.1/cargo-crates/pin-project-lite-0.1.7/tests/
H A Dtest.rs65 struct Struct2<I, J> in where_clause_and_associated_type_field()
126 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
198 struct Struct2<'a, T, U> { in lifetime_project()
214 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() impl
235 struct Struct2<'a, T, U> { in lifetime_project_elided()
251 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project_elided() implementation
304 pub struct Struct2<T: ?Sized> { in dst()
310 let mut x = Struct2 { x: 0_u8 }; in dst()
311 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
347 struct Struct2 { in dyn_type()
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/stability-attribute/
H A Dgenerics-default-stability.rs54 let _ = Struct2 { field: 1 }; // ok in main()
55 let _: Struct2 = Struct2 { field: 1 }; // ok in main()
56 let _: Struct2<usize> = Struct2 { field: 1 }; // ok in main()
59 let _: Struct2 = STRUCT2; // ok in main()
60 let _: Struct2<usize> = STRUCT2; // ok in main()
61 let _: Struct2<isize> = Struct2 { field: 0 }; // ok in main()
/dports/devel/folly/folly-2021.12.27.00/folly/test/
H A DPolyTest.cpp666 struct Struct2 : Struct { struct
678 int meow(Struct2&) { in meow() argument
682 int purr(Struct2&) { in purr() argument
685 int purr(Struct2 const&) { in purr()
698 EXPECT_EQ(static_cast<int (Struct2::*)() const>(&Struct2::property), m2); in TEST()
700 EXPECT_EQ(static_cast<int (Struct2::*)() const>(&Struct2::property), m3); in TEST()
702 auto m4 = folly::sig<long()>(&Struct2::meow); in TEST()
703 EXPECT_EQ(&Struct2::meow, m4); in TEST()
705 auto m5 = folly::sig<int()>(&Struct2::purr); in TEST()
706 EXPECT_EQ(static_cast<int (Struct2::*)()>(&Struct2::purr), m5); in TEST()
[all …]
/dports/net/gemserv/gemserv-v0.4.5/cargo-crates/pin-project-lite-0.1.11/tests/
H A Dtest.rs67 struct Struct2<I, J> in where_clause_and_associated_type_field()
128 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
201 struct Struct2<'a, T, U> { in lifetime_project()
223 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() implementation
284 pub struct Struct2<T: ?Sized> { in dst()
290 let mut x = Struct2 { f: 0_u8 }; in dst()
291 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
330 struct Struct2 { in dyn_type()
363 struct Struct2<A, B> { in no_infer_outlives()
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/pin-project-lite-0.1.12/tests/
H A Dtest.rs68 struct Struct2<I, J> in where_clause_and_associated_type_field()
129 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
202 struct Struct2<'a, T, U> { in lifetime_project()
224 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() implementation
285 pub struct Struct2<T: ?Sized> { in dst()
291 let mut x = Struct2 { f: 0_u8 }; in dst()
292 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
331 struct Struct2 { in dyn_type()
364 struct Struct2<A, B> { in no_infer_outlives()
/dports/devel/sccache/sccache-0.2.15/cargo-crates/pin-project-lite-0.1.11/tests/
H A Dtest.rs67 struct Struct2<I, J> in where_clause_and_associated_type_field()
128 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
201 struct Struct2<'a, T, U> { in lifetime_project()
223 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() implementation
284 pub struct Struct2<T: ?Sized> { in dst()
290 let mut x = Struct2 { f: 0_u8 }; in dst()
291 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
330 struct Struct2 { in dyn_type()
363 struct Struct2<A, B> { in no_infer_outlives()
/dports/www/ffsend/ffsend-ccd489ce2e75b91c0f17fbf13dbd91fe84f5ad98/cargo-crates/pin-project-lite-0.1.12/tests/
H A Dtest.rs68 struct Struct2<I, J> in where_clause_and_associated_type_field()
129 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
202 struct Struct2<'a, T, U> { in lifetime_project()
224 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() implementation
285 pub struct Struct2<T: ?Sized> { in dst()
291 let mut x = Struct2 { f: 0_u8 }; in dst()
292 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
331 struct Struct2 { in dyn_type()
364 struct Struct2<A, B> { in no_infer_outlives()
/dports/security/rustscan/RustScan-2.0.1/cargo-crates/pin-project-lite-0.1.11/tests/
H A Dtest.rs67 struct Struct2<I, J> in where_clause_and_associated_type_field()
128 pub struct Struct2<'a, T: ::core::fmt::Debug> { in trait_bounds_on_type_generics()
201 struct Struct2<'a, T, U> { in lifetime_project()
223 impl<'b, T, U> Struct2<'b, T, U> { in lifetime_project() impl
284 pub struct Struct2<T: ?Sized> { in dst()
290 let mut x = Struct2 { f: 0_u8 }; in dst()
291 let x: Pin<&mut Struct2<dyn core::fmt::Debug + Unpin>> = Pin::new(&mut x as _); in dst()
330 struct Struct2 { in dyn_type()
363 struct Struct2<A, B> { in no_infer_outlives()

12345678910>>...24