Searched refs:S2 (Results 1 - 25 of 72) sorted by relevance

123

/external/clang/test/SemaCXX/
H A Dout-of-line-def-mismatch.cpp9 struct S2 { struct in namespace:N2::N1
20 void N2::N1::S2::func(S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
21 void N2::N1::S2::func(C1&, unsigned, const S1*) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
22 void N2::N1::S2::func(S1*, double) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
23 void N2::N1::S2::func(S1, unsigned) {} // expected-error {{out-of-line definition of 'func' does not match any declaration in 'N2::N1::S2'}}
24 void N2::N1::S2
[all...]
H A Dptrtomember.cpp14 struct S2 { struct
18 int S2::*pf = &S2::bitfield; // expected-error {{address of bit-field requested}}
H A Dtype-definition-in-specifier.cpp5 struct S2;
16 (void)((struct S2 { int x; }*)0); // expected-error{{can not be defined}}
H A Dnamespace.cpp24 namespace S2 { namespace in namespace:S1
37 namespace S2 { namespace in namespace:S1
50 namespace S2 { namespace in namespace:S1
H A Delaborated-type-specifier.cpp8 struct S2 *x;
13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) {
H A Dwarn-dangling-field.cpp21 struct S2 { struct
23 S2(int i) : x(i) {} // expected-warning {{binding reference member 'x' to a temporary}} function in struct:S2
H A Dwarn-overloaded-virtual.cpp12 struct S2 : public B1 { struct in inherits:B1
20 struct MS1 : public S2, public B2 {
/external/clang/test/CXX/class/class.nest/
H A Dp3.cpp20 struct S2 { struct in namespace:PR6107
23 struct S2::S1 { };
/external/llvm/include/llvm/ADT/
H A DSetOperations.h23 bool set_union(S1Ty &S1, const S2Ty &S2) { argument
26 for (typename S2Ty::const_iterator SI = S2.begin(), SE = S2.end();
37 /// elements that are not contained in S2.
40 void set_intersect(S1Ty &S1, const S2Ty &S2) { argument
44 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2
51 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) { argument
55 if (!S2.count(*SI)) // if the element is not in set2
63 void set_subtract(S1Ty &S1, const S2Ty &S2) { argument
[all...]
H A DStringSwitch.h92 const char (&S2)[N2], const T& Value) {
93 return Case(S0, Value).Case(S1, Value).Case(S2, Value);
98 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)
91 Cases(const char (&S0)[N0], const char (&S1)[N1], const char (&S2)[N2], const T& Value) argument
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/llvm/unittests/ADT/
H A DImmutableSetTest.cpp55 ImmutableSet<int> S2 = f.add(S, 3); local
57 EXPECT_FALSE(S2.isEmpty());
58 EXPECT_FALSE(S == S2);
59 EXPECT_TRUE(S != S2);
61 EXPECT_TRUE(S2.contains(3));
62 EXPECT_FALSE(S2.begin() == S2.end());
63 EXPECT_TRUE(S2.begin() != S2.end());
73 EXPECT_FALSE(S2
83 ImmutableSet<int> S2 = f.add(f.add(f.add(S, 3), 4), 5); local
121 ImmutableSet<int> S2 = f.add(f.add(S, 4), 5); local
144 ImmutableSet<char> S2 = f.add(f.add(f.add(S, 'a'), 'e'), 'i'); local
156 ImmutableSet<char> S2 = f.add(f.add(f.add(S, 'b'), 'c'), 'd'); local
179 ImmutableSet<long> S2 = f.add(f.add(f.add(S, 0), 1), 2); local
[all...]
/external/clang/test/Index/Inputs/
H A Dt1.c15 struct S2 { struct
22 ((struct S2 *)0)->x = 0;
/external/clang/test/Index/
H A Dannotate-tokens.cpp17 struct S2 { S1 *operator->(); }; struct
18 void test3(S2 s2) {
94 // CHECK: Keyword: "struct" [17:1 - 17:7] StructDecl=S2:17:8 (Definition)
95 // CHECK: Identifier: "S2" [17:8 - 17:10] StructDecl=S2:17:8 (Definition)
96 // CHECK: Punctuation: "{" [17:11 - 17:12] StructDecl=S2:17:8 (Definition)
103 // CHECK: Punctuation: ";" [17:29 - 17:30] StructDecl=S2:17:8 (Definition)
104 // CHECK: Punctuation: "}" [17:31 - 17:32] StructDecl=S2:17:8 (Definition)
109 // CHECK: Identifier: "S2" [18:12 - 18:14] TypeRef=struct S2
[all...]
/external/clang/test/PCH/
H A Dtypes.h47 struct S2;
48 struct S2 {}; struct
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp3.cpp60 struct S2 { struct in struct:PR7979::S
68 template void S<int>::S2::h();
73 template <typename T> void S<T>::S2::h() {}
/external/clang/test/CodeGenCXX/
H A Dexplicit-instantiation.cpp25 struct S2 { struct in struct:S
40 template void S<int>::S2::h();
45 template <typename T> void S<T>::S2::h() {}
H A Dwarn-padded-packed.cpp9 struct S2 { // expected-warning {{padding size of 'S2' with 3 bytes to alignment boundary}} struct
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dsha1-tlsprf.c41 const u8 *S1, *S2; local
70 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
75 S2 = secret + L_S1;
77 /* The last byte of S1 will be shared with S2 */
78 S2--;
83 hmac_sha1_vector(S2, L_S2, 2, &SHA1_addr[1], &SHA1_len[1], A_SHA1);
96 hmac_sha1_vector(S2, L_S2, 3, SHA1_addr, SHA1_len,
99 hmac_sha1(S2, L_S2, A_SHA1, SHA1_MAC_LEN, A_SHA1);
/external/wpa_supplicant_8/src/crypto/
H A Dsha1-tlsprf.c41 const u8 *S1, *S2; local
70 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
75 S2 = secret + L_S1;
77 /* The last byte of S1 will be shared with S2 */
78 S2--;
83 hmac_sha1_vector(S2, L_S2, 2, &SHA1_addr[1], &SHA1_len[1], A_SHA1);
96 hmac_sha1_vector(S2, L_S2, 3, SHA1_addr, SHA1_len,
99 hmac_sha1(S2, L_S2, A_SHA1, SHA1_MAC_LEN, A_SHA1);
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dsha1-tlsprf.c41 const u8 *S1, *S2; local
70 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
75 S2 = secret + L_S1;
77 /* The last byte of S1 will be shared with S2 */
78 S2--;
83 hmac_sha1_vector(S2, L_S2, 2, &SHA1_addr[1], &SHA1_len[1], A_SHA1);
96 hmac_sha1_vector(S2, L_S2, 3, SHA1_addr, SHA1_len,
99 hmac_sha1(S2, L_S2, A_SHA1, SHA1_MAC_LEN, A_SHA1);
/external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
H A Dsema.cpp80 struct S2 { struct
81 S2();
82 S2(int, int) throw();
108 N(S2());
109 P(S2(0, 0));
110 S2 s;
153 struct G3 { S2 s; };
166 B(b, static_cast<T>(S2(0, 0)));
176 S3(const S2&);
/external/stlport/test/unit/
H A Dmfunptr_test.cpp41 struct S2 { } s2; struct
44 int f2(S1&, S2&);
46 int f2c(const S1&, const S2&);
49 void vf2(S1&, S2&);
51 void vf2c(const S1&, const S2&);
134 int f2(S1&, S2&)
140 int f2c(const S1&, const S2&) argument
146 void vf2(S1&, S2&)
152 void vf2c(const S1&, const S2&) argument
/external/clang/test/SemaTemplate/
H A Dself-comparison.cpp14 template <int A, int B> struct S2 { struct
44 S2<1, 1> s2; s2.foo<void>();
/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))))
51 S2 = 8.33333333332248946124e-03, /* 0x3F811111, 0x1110F8A6 */ variable
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
/external/clang/test/Sema/
H A Dtype-spec-struct-union.c9 struct S2 *x;
14 int test_struct_scope(S1 *s1, struct S2 *s2, struct S3 *s3) {
21 struct S2 { int x; } *s2 = 0; struct
22 if (s1->u1.x == s2) return 1; /* expected-warning {{comparison of distinct pointer types ('struct S2 *' and 'struct S2 *')}} */

Completed in 173 milliseconds

123