Searched defs:S3 (Results 1 - 25 of 183) sorted by relevance

12345678

/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.unused/
H A Dp1.cpp5 struct [[maybe_unused("Wrong")]] S3 {}; // expected-error {{'maybe_unused' cannot have an argument list}} struct
/external/clang/test/CodeGenCXX/
H A Dmangle-98.cpp3 template <bool B> struct S3 {}; struct
6 void f(S3<true>) {}
9 void f(S3<false>) {}
12 void f2(S3<100>) {}
H A Dregparm.cpp29 struct S3 { struct
34 __attribute((regparm(2))) void foo4(S3 a, int b);
35 // CHECK: declare void @_Z4foo42S3i(%struct.S3* byval align 4, i32 inreg)
36 void bar3(S3 a, int b) {
H A Dmicrosoft-abi-dynamic-cast.cpp131 struct S3 : S2 {}; struct in namespace:PR25606
133 S3 *f(S2 &s) {
135 return dynamic_cast<S3 *>(&s);
137 // CHECK-LABEL: define %"struct.PR25606::S3"* @"\01?f@PR25606@@YAPAUS3@1@AAUS2@1@@Z"(
140 // CHECK: [[BC:%.*]] = bitcast i8* [[CALL]] to %"struct.PR25606::S3"*
142 // CHECK: ret %"struct.PR25606::S3"* [[BC]]
H A Dwarn-padded-packed.cpp14 struct S3 { struct
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
/external/clang/test/Modules/Inputs/
H A Delaborated-type-structs.h3 struct S3 { int x; }; struct
/external/clang/test/CXX/dcl.dcl/dcl.attr/dcl.attr.nodiscard/
H A Dp1.cpp5 struct [[nodiscard("Wrong")]] S3 {}; // expected-error {{'nodiscard' cannot have an argument list}} struct
/external/clang/test/SemaCXX/
H A Dattr-aligned.cpp12 typedef struct __attribute__((aligned(4))) S3 { struct
14 } S3 __attribute__((aligned(8))); typedef in typeref:struct:S3
15 static_assert(alignof(S3) == 8, "attribute ignored");
16 static_assert(alignof(struct S3) == 4, "attribute clobbered");
H A Dnew-null.cpp32 struct S3 { struct
H A Dptrtomember.cpp20 struct S3 { struct
24 void f3(S3* p, void (S3::*m)()) { argument
H A Dtype-definition-in-specifier.cpp6 struct S3;
18 struct S3 { int x; } s3; struct
H A Dwarn-dangling-field.cpp26 struct S3 { struct
28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator function in struct:S3
/external/clang/test/PCH/
H A Dcheck-deserializations.cpp2 // RUN: %clang_cc1 -triple x86_64-linux-gnu -error-on-deserialized-decl S1_keyfunc -error-on-deserialized-decl S3 -error-on-deserialized-decl DND -std=c++11 -include-pch %t.1 -emit-pch -o %t.2 %s
3 // RUN: %clang_cc1 -triple x86_64-linux-gnu -error-on-deserialized-decl S1_method -error-on-deserialized-decl S3 -error-on-deserialized-decl DND -std=c++11 -include-pch %t.2 -emit-llvm-only %s
17 struct S3 {}; struct
20 operator S3();
/external/clang/test/SemaTemplate/
H A Dself-comparison.cpp21 struct S3 { struct
45 S3 s3; s3.foo<1, 1>();
/external/fdlibm/
H A Dk_sin.c30 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
37 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
52 S3 = -1.98412698298579493134e-04, /* 0xBF2A01A0, 0x19C161D5 */ variable
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
/external/clang/test/OpenMP/
H A Dthreadprivate_codegen.cpp16 // CHECK-DAG: [[S3:%.+]] = type { [[INT]], float }
23 // CHECK-DEBUG-DAG: [[S3:%.+]] = type { [[INT]], float }
29 // CHECK-TLS-DAG: [[S3:%.+]] = type { [[INT]], float }
67 struct S3 { struct
70 S3() function in struct:S3
73 S3(int a) function in struct:S3
76 S3(const S3 &s) { function in struct:S3
79 ~S3() {
124 // CHECK-DAG: [[STATIC_S:@.+]] = external global [[S3]]
[all...]
H A Ddistribute_firstprivate_messages.cpp24 class S3 { class
26 S3 &operator=(const S3 &s3);
29 S3() : a(0) {} // expected-note {{candidate constructor not viable: requires 0 arguments, but 1 was provided}} function in class:S3
30 S3(S3 &s3) : a(s3.a) {} // expected-note {{candidate constructor not viable: 1st argument ('const S3') would lose const qualifier}} function in class:S3
32 const S3 c;
33 const S3 ca[5];
55 S3
[all...]
/external/clang/test/CodeGen/
H A Dpragma-pack-1.c27 struct S3 struct
61 // CHECK: %struct.S3 = type { [3 x i8], i8, %struct.T3, %struct.T32 }
/external/clang/test/Parser/
H A Dcxx0x-ambig.cpp53 struct S3 { struct
/external/llvm/include/llvm/ADT/
H A DStringSwitch.h119 const char (&S2)[N2], const char (&S3)[N3],
125 (N3-1 == Str.size() && std::memcmp(S3, Str.data(), N3-1) == 0))) {
135 const char (&S2)[N2], const char (&S3)[N3],
141 (N3-1 == Str.size() && std::memcmp(S3, Str.data(), N3-1) == 0) ||
118 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const T& Value) argument
134 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T& Value) argument
/external/llvm/unittests/ADT/
H A DImmutableSetTest.cpp65 ImmutableSet<int> S3 = f.add(S, 2); local
67 EXPECT_FALSE(S3.isEmpty());
68 EXPECT_FALSE(S == S3);
69 EXPECT_TRUE(S != S3);
71 EXPECT_TRUE(S3.contains(2));
73 EXPECT_FALSE(S2 == S3);
74 EXPECT_TRUE(S2 != S3);
76 EXPECT_FALSE(S3.contains(3));
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); local
89 EXPECT_FALSE(S3
122 ImmutableSet<int> S3 = f.add(S2, 3); local
145 ImmutableSet<char> S3 = f.add(f.add(S2, 'o'), 'u'); local
157 ImmutableSet<char> S3 = f.add(f.add(f.add(S2, 'f'), 'g'), 'h'); local
180 ImmutableSet<long> S3 = f.add(f.add(f.add(S2, 3), 4), 5); local
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStringSwitch.h98 const char (&S2)[N2], const char (&S3)[N3],
100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value);
105 const char (&S2)[N2], const char (&S3)[N3],
107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value)
97 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const T& Value) argument
104 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const char (&S3)[N3], const char (&S4)[N4], const T& Value) argument
/external/swiftshader/third_party/LLVM/unittests/ADT/
H A DImmutableSetTest.cpp65 ImmutableSet<int> S3 = f.add(S, 2); local
67 EXPECT_FALSE(S3.isEmpty());
68 EXPECT_FALSE(S == S3);
69 EXPECT_TRUE(S != S3);
71 EXPECT_TRUE(S3.contains(2));
73 EXPECT_FALSE(S2 == S3);
74 EXPECT_TRUE(S2 != S3);
76 EXPECT_FALSE(S3.contains(3));
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43); local
89 EXPECT_FALSE(S3
122 ImmutableSet<int> S3 = f.add(S2, 3); local
145 ImmutableSet<char> S3 = f.add(f.add(S2, 'o'), 'u'); local
157 ImmutableSet<char> S3 = f.add(f.add(f.add(S2, 'f'), 'g'), 'h'); local
180 ImmutableSet<long> S3 = f.add(f.add(f.add(S2, 3), 4), 5); local
[all...]
/external/clang/test/Analysis/
H A Dexplain-svals.cpp6 struct S3 { struct in struct:S
9 struct S2 : S3 {
59 clang_analyzer_explain(&s.s2[5].y[3]); // expected-warning-re{{{{^pointer to element of type 'int' with index 3 of field 'y' of base object 'S::S3' inside element of type 'struct S::S2' with index 5 of field 's2' of parameter 's'$}}}}
/external/clang/test/CXX/class.access/class.friend/
H A Dp11.cpp43 struct S3 { struct

Completed in 1378 milliseconds

12345678