Home
last modified time | relevance | path

Searched defs:S5 (Results 1 – 25 of 249) sorted by relevance

12345678910

/aosp_15_r20/external/clang/test/OpenMP/
H A Dthreadprivate_codegen.cpp100 struct S5 { struct
102 S5() in S5() argument
105 S5(int a) in S5() function
108 S5(const S5 &s) { in S5() function
111 ~S5() { in ~S5() argument
H A Dtarget_parallel_shared_messages.cpp36 class S5 { class
38 S5():a(0) {} in S5() function in S5
39 S5(const S5 &s5):a(s5.a) { } in S5() function in S5
41 S5(int v):a(v) { } in S5() function in S5
H A Dteams_shared_messages.cpp36 class S5 { class
38 S5():a(0) {} in S5() function in S5
39 S5(const S5 &s5):a(s5.a) { } in S5() function in S5
41 S5(int v):a(v) { } in S5() function in S5
H A Dtask_shared_messages.cpp39 class S5 { class
41 S5() : a(0) {} in S5() function in S5
42 S5(const S5 &s5) : a(s5.a) {} in S5() function in S5
45 S5(int v) : a(v) {} in S5() function in S5
H A Dparallel_shared_messages.cpp36 class S5 { class
38 S5():a(0) {} in S5() function in S5
39 S5(const S5 &s5):a(s5.a) { } in S5() function in S5
41 S5(int v):a(v) { } in S5() function in S5
H A Dparallel_sections_shared_messages.cpp39 class S5 { class
41 S5() : a(0) {} in S5() function in S5
42 S5(const S5 &s5) : a(s5.a) {} in S5() function in S5
45 S5(int v) : a(v) {} in S5() function in S5
H A Dtarget_parallel_firstprivate_messages.cpp39 class S5 { class
41 S5():a(0) {} in S5() function in S5
42 S5(const S5 &s5):a(s5.a) { } // expected-note {{implicitly declared private here}} in S5() function in S5
44 S5(int v):a(v) { } in S5() function in S5
H A Dparallel_firstprivate_messages.cpp39 class S5 { class
41 S5():a(0) {} in S5() function in S5
42 S5(const S5 &s5):a(s5.a) { } // expected-note {{implicitly declared private here}} in S5() function in S5
44 S5(int v):a(v) { } in S5() function in S5
H A Ddistribute_firstprivate_messages.cpp42 class S5 { class
44 S5():a(0) {} in S5() function in S5
45 S5(const S5 &s5):a(s5.a) { } in S5() function in S5
47 S5(int v):a(v) { } in S5() function in S5
H A Dteams_firstprivate_messages.cpp41 class S5 { class
43 S5() : a(0) {} in S5() function in S5
44 S5(const S5 &s5) : a(s5.a) {} // expected-note {{implicitly declared private here}} in S5() function in S5
46 S5(int v) : a(v) {} in S5() function in S5
H A Dtask_firstprivate_messages.cpp53 class S5 { class
55 S5() : a(0) {} in S5() function in S5
56 S5(const S5 &s5) : a(s5.a) {} // expected-note 2 {{implicitly declared private here}} in S5() function in S5
59 S5(int v) : a(v) {} in S5() function in S5
H A Dtarget_parallel_for_simd_map_messages.cpp39 class S5 { class
41 S5():a(0) {} in S5() function in S5
42 S5(const S5 &s5):a(s5.a) { } in S5() function in S5
44 S5(int v):a(v) { } in S5() function in S5
H A Dparallel_sections_lastprivate_messages.cpp44 class S5 { class
46 S5() : a(0) {} // expected-note {{implicitly declared private here}} in S5() function in S5
49 S5(const S5 &s5) : a(s5.a) {} in S5() function in S5
50 S5(int v) : a(v) {} in S5() function in S5
/aosp_15_r20/external/clang/test/CXX/class/class.mem/
H A Dp1.cpp47 struct S5 struct
49 static int v5; //expected-note{{previous definition is here}}
50 void v5() { } //expected-error{{redefinition of 'v5' as different kind of symbol}} in v5()
52 void v6() { } //expected-note{{previous definition is here}} in v6()
53 static int v6; //expected-error{{redefinition of 'v6' as different kind of symbol}}
55 void v7() { } in v7()
56 void v7(int) { } //expected-note{{previous definition is here}} in v7()
57 static int v7; //expected-error{{redefinition of 'v7' as different kind of symbol}}
61 int v8; //expected-error{{duplicate member 'v8'}}
/aosp_15_r20/external/clang/test/SemaCXX/
H A Dnew-null.cpp57 template<typename ...T> struct S5 { // expected-warning 0-1{{extension}} struct
62 template struct S5<>; argument
63 template struct S5<int>; // expected-note {{in instantiation of}} variable
/aosp_15_r20/external/clang/test/CodeGenCXX/
H A Dwarn-padded-packed.cpp24 struct S5 { struct
29 } u; // expected-warning {{padding struct 'S5' with 3 bytes to align 'u'}} argument
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { } in f() argument
/aosp_15_r20/external/llvm/unittests/Support/
H A DAlignOfTest.cpp51 struct S5 { A1 a1; A2 a2; A4 a4; A8 a8; }; argument
/aosp_15_r20/external/clang/test/SemaCUDA/
H A Dmethod-target.cu53 struct S5 { struct
54 S5() {} in S5() function
55 S5& operator=(const S5&) {return *this;} // expected-note {{candidate function not viable}} in operator =() argument
/aosp_15_r20/prebuilts/go/linux-x86/test/
Dsizeof.go74 S5 anonMember
76 S5 struct { struct
77 E int64
78 S6
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/include/llvm/ADT/
DStringSwitch.h110 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
116 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
122 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
128 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
135 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
/aosp_15_r20/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/
H A DStringSwitch.h110 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
116 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
122 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
128 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
135 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/include/llvm/ADT/
DStringSwitch.h110 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
116 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
122 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
128 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
135 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/include/llvm/ADT/
DStringSwitch.h110 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
116 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
122 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
128 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
135 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/include/llvm/ADT/
DStringSwitch.h110 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
116 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
122 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
128 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
135 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DStringSwitch.h108 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
114 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
120 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
126 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()
133 StringLiteral S3, StringLiteral S4, StringLiteral S5, in Cases()

12345678910