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

12345

/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/PCH/
H A Dcheck-deserializations.cpp2 // RUN: %clang_cc1 -error-on-deserialized-decl S1_keyfunc -error-on-deserialized-decl S3 -include-pch %t.1 -emit-pch -o %t.2 %s
3 // RUN: %clang_cc1 -error-on-deserialized-decl S1_method -error-on-deserialized-decl S3 -include-pch %t.2 -emit-llvm-only %s
14 struct S3 {}; struct
17 operator S3();
/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 Dptrtomember.cpp20 struct S3 { struct
24 void f3(S3* p, void (S3::*m)()) { argument
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 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 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
/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/OpenMP/
H A Dparallel_copyin_messages.cpp17 class S3 { class
20 S3():a(0) { } function in class:S3
21 S3 &operator =(S3 &s3) { return *this; }
45 S3 h;
H A Dparallel_firstprivate_messages.cpp23 class S3 { class
26 S3():a(0) { } function in class:S3
27 S3(S3 &s3):a(s3.a) { } function in class:S3
29 const S3 c;
30 const S3 ca[5];
47 S3 h;
H A Dparallel_sections_shared_messages.cpp21 class S3 { class
25 S3() : a(0) {} function in class:S3
26 S3(S3 &s3) : a(s3.a) {} function in class:S3
28 const S3 c;
29 const S3 ca[5];
48 S3 h;
H A Dparallel_shared_messages.cpp20 class S3 { class
23 S3():a(0) { } function in class:S3
24 S3(S3 &s3):a(s3.a) { } function in class:S3
26 const S3 c;
27 const S3 ca[5];
44 S3 h;
H A Dparallel_sections_copyin_messages.cpp18 class S3 { class
22 S3() : a(0) {} function in class:S3
23 S3 &operator=(S3 &s3) { return *this; }
48 S3 h;
/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/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>();

Completed in 639 milliseconds

12345