Searched refs:S3 (Results 1 - 25 of 64) sorted by relevance

123

/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 Dwarn-padded-packed.cpp14 struct S3 { struct
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
/external/chromium_org/v8/test/mjsunit/compiler/
H A Ddead-string-char-code-at.js53 var S3 = S1 + S2;
60 assertEquals(S2, dead2(S2, S3));
61 assertEquals("11", dead3(S2, S3));
63 assertEquals(S3, dead1(S3, 399));
64 assertEquals(S3, dead2(S3, "false"));
67 assertEquals(S3, dead1(S3, 0));
68 assertEquals(S3, dead
[all...]
H A Ddead-string-char-code-at2.js53 var S3 = S1 + S2;
60 assertEquals(S2, dead2(S2, S3));
61 assertEquals("11", dead3(S2, S3));
63 assertEquals(S3, dead1(S3, 399));
64 assertEquals(S3, dead2(S3, "false"));
67 assertEquals(S3, dead1(S3, 0));
68 assertEquals(S3, dead
[all...]
/external/clang/test/SemaCXX/
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-unused-variables.cpp107 struct S3 { struct in namespace:PR11550
110 S3 makeS3();
111 void testS3(S3 a) {
112 S3 x = makeS3(); // expected-warning {{unused variable 'x'}}
113 S3 y;
114 S3 z = a; // expected-warning {{unused variable 'z'}}
H A Dcxx11-crashes.cpp21 struct S3; // expected-note {{forward declaration}}
24 S3 x; // expected-error {{incomplete type}}
28 struct S3 { struct in namespace:rdar12240916
H A Dnamespace.cpp26 namespace S3 { namespace in namespace:S1::S2
39 namespace S3 { namespace in namespace:S1::S2
51 namespace S3 { namespace in namespace:S1::S2
H A Delaborated-type-specifier.cpp9 struct S3 *y;
13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) {
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
H A Dalignof.cpp30 // s2-within-S3 and thus require 'S3' to be complete. If we start
33 struct S3 { struct
39 static const int test11 = __alignof__(S3::s2.x);
40 static const int test12 = __alignof__(S3::s2.s); // expected-error {{invalid application of 'alignof' to an incomplete type 'S1'}}
44 // Same reasoning as S3.
H A Dwarn-reorder-ctor-initialization.cpp92 struct S3 { }; struct in namespace:T1
94 struct S4: virtual S3, S2 {
95 S4() : S2(), // expected-warning {{base class 'T1::S2' will be initialized after base 'T1::S3'}}
96 S3() { };
/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/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
H A Dp2.cpp29 struct S3 { struct
30 S3() = default;
31 S3(const S3&) = default;
32 S3(S3&&) = default;
33 constexpr S3(int n) : n(n) {} function in struct:S3
36 constexpr S3 s3a = S3(0);
37 constexpr S3 s3
[all...]
/external/clang/test/Modules/Inputs/
H A Dredecl-merge-left.h50 struct S3;
51 struct S3;
56 struct S3 *produce_S3(void);
H A Dredecl-merge-bottom.h17 struct S3;
/external/clang/test/OpenMP/
H A Dparallel_private_messages.cpp20 class S3 { class
23 S3():a(0) { } function in class:S3
25 const S3 c;
26 const S3 ca[5];
/external/clang/test/Sema/
H A DMicrosoftCompatibility.c21 struct __declspec(appdomain) S3 {}; /* expected-warning {{__declspec attribute 'appdomain' is not supported}} */
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dsema.cpp180 struct S3 { struct
181 virtual ~S3() throw();
182 S3() throw();
183 explicit S3(int);
184 S3(const S2&);
189 P(dynamic_cast<S3&>(f2<T&>()));
192 void operator +(const S1&, const S3&);
195 late<S3, false>();
196 late2<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/CodeGen/
H A Dpragma-pack-1.c27 struct S3 struct
61 // CHECK: %struct.S3 = type <{ [3 x i8], i8, %struct.T3, [2 x i8], %struct.T32 }>
/external/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

Completed in 630 milliseconds

123