Home
last modified time | relevance | path

Searched defs:S (Results 276 – 300 of 65317) sorted by relevance

1...<<11121314151617181920>>...2613

/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/devel/llvm13/llvm-project-13.0.1.src/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/devel/llvm70/llvm-7.0.1.src/tools/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/lang/clang-mesa/clang-13.0.1.src/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp3 struct S { struct
4 typedef struct A {} A; // expected-note {{previous definition is here}}
5 typedef struct B B;
6 typedef A A; // expected-error {{redefinition of 'A'}}
8 struct C { };
9 typedef struct C OtherC;
10 typedef OtherC C;
12 typedef struct D { } D2;
13 typedef D2 D;
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() argument
33 S(int v) : v_(v) {} in S() function
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() argument
42 std::optional<S> o1{3}; in test() argument
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() argument
33 S(int v) : v_(v) {} in S() argument
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() argument
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() argument
42 std::optional<S> o1{3}; in test() argument
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() function
33 S(int v) : v_(v) {} in S() function
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() argument
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
42 std::optional<S> o1{3}; in test() argument
/dports/www/chromium-legacy/chromium-88.0.4324.182/buildtools/third_party/libc++/trunk/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() argument
33 S(int v) : v_(v) {} in S() function
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
42 std::optional<S> o1{3}; in test() argument
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() function
33 S(int v) : v_(v) {} in S() argument
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
42 std::optional<S> o1{3}; in test() argument
/dports/devel/libc++/libcxx-10.0.1.src/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() argument
33 S(int v) : v_(v) {} in S() function
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
42 std::optional<S> o1{3}; in test() argument
/dports/devel/llvm12/llvm-project-12.0.1.src/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() argument
33 S(int v) : v_(v) {} in S() argument
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
42 std::optional<S> o1{3}; in test() argument
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() function
33 S(int v) : v_(v) {} in S() argument
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() argument
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
42 std::optional<S> o1{3}; in test() argument
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() function
33 S(int v) : v_(v) {} in S() argument
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() argument
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
42 std::optional<S> o1{3}; in test() argument
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() function
33 S(int v) : v_(v) {} in S() argument
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() function
42 std::optional<S> o1{3}; in test() argument
/dports/devel/llvm13/llvm-project-13.0.1.src/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.fail.cpp31 struct S { struct
32 constexpr S() : v_(0) {} in S() function
33 S(int v) : v_(v) {} in S() function
34 constexpr S(const S &rhs) : v_(rhs.v_) {} // not trivially moveable in S() argument
35 constexpr S( S &&rhs) : v_(rhs.v_) {} // not trivially moveable in S() argument
42 std::optional<S> o1{3}; in test() argument
/dports/lang/gcc12-devel/gcc-12-20211205/libgomp/testsuite/libgomp.c++/
H A Dudr-2.C12 struct S struct
15 #pragma omp declare reduction (foo : U, S : omp_out.foo (omp_in, false)) argument
20 S s; in baz() argument
33 void foo (S &x) { s += x.s; } in foo() argument
34 void foo (S &x, bool y) { s += x.s; if (y) abort (); } in foo() argument
35 S (const S &x) { s = x.s + 1; } in S() argument
36 S (const S &x, bool y) { s = x.s + 2; if (y) abort (); } in S() argument
37 S () { s = 6; } in S() function
38 S (int x) { s = x; } in S() argument
/dports/lang/gcc8/gcc-8.5.0/libgomp/testsuite/libgomp.c++/
H A Dudr-2.C12 struct S struct
15 #pragma omp declare reduction (foo : U, S : omp_out.foo (omp_in, false)) argument
20 S s; in baz() argument
33 void foo (S &x) { s += x.s; } in foo() argument
34 void foo (S &x, bool y) { s += x.s; if (y) abort (); } in foo() argument
35 S (const S &x) { s = x.s + 1; } in S() argument
36 S (const S &x, bool y) { s = x.s + 2; if (y) abort (); } in S() argument
37 S () { s = 6; } in S() argument
38 S (int x) { s = x; } in S() argument
/dports/lang/gcc6-aux/gcc-6-20180516/libgomp/testsuite/libgomp.c++/
H A Dudr-2.C12 struct S struct
15 #pragma omp declare reduction (foo : U, S : omp_out.foo (omp_in, false)) argument
20 S s; in baz() argument
33 void foo (S &x) { s += x.s; } in foo() argument
34 void foo (S &x, bool y) { s += x.s; if (y) abort (); } in foo() argument
35 S (const S &x) { s = x.s + 1; } in S() function
36 S (const S &x, bool y) { s = x.s + 2; if (y) abort (); } in S() argument
37 S () { s = 6; } in S() argument
38 S (int x) { s = x; } in S() function

1...<<11121314151617181920>>...2613