HomeSort by relevance Sort by last modified time
    Searched defs:S2 (Results 1 - 25 of 104) sorted by null

1 2 3 4 5

  /external/clang/test/SemaCXX/
warn-func-as-bool.cpp 11 struct S2 {
38 b = S2::f4;
39 if (S2::f4) {}
out-of-line-def-mismatch.cpp 9 struct S2 {
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::func(unsigned*, S1*) {} // expected-error {{out-of-line definition of 'func' does not match any d (…)
    [all...]
ptrtomember.cpp 14 struct S2 {
18 int S2::*pf = &S2::bitfield; // expected-error {{address of bit-field requested}}
warn-dangling-field.cpp 21 struct S2 {
23 S2(int i) : x(i) {} // expected-warning {{binding reference member 'x' to a temporary}}
function-extern-c.cpp 22 struct S2 {
32 extern "C" S2 f5( void );
  /external/llvm/unittests/ADT/
ImmutableMapTest.cpp 34 ImmutableMap<int, int> S2 = f.add(f.add(f.add(S, 3, 10), 4, 11), 5, 12);
37 EXPECT_FALSE(S2.isEmpty());
42 EXPECT_EQ(10, *S2.lookup(3));
43 EXPECT_EQ(11, *S2.lookup(4));
44 EXPECT_EQ(12, *S2.lookup(5));
46 EXPECT_EQ(5, S2.getMaxElement()->first);
47 EXPECT_EQ(3U, S2.getHeight());
ImmutableSetTest.cpp 55 ImmutableSet<int> S2 = f.add(S, 3);
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 == S3)
    [all...]
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p8.cpp 18 struct S2 {
23 void S2::f(int i) {
  /external/clang/test/CodeGenCXX/
exception-spec-decay.cpp 17 struct S2 {
29 S2 <int[10]> s2; local
30 s2.foo();
explicit-instantiation.cpp 25 struct S2 {
40 template void S<int>::S2::h();
45 template <typename T> void S<T>::S2::h() {}
regparm.cpp 19 struct S2 {
23 void __attribute__((regparm(3))) foo3(struct S2 a, int b);
25 void bar3(struct S2 a, int b) {
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_sinf.c 28 S2 = 0x111110896efbb2.0p-59, /* 0.0083333293858894631756 */
45 return (x + s*(S1+z*S2)) + s*w*r;
k_sin.c 35 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
42 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
53 S2 = 8.33333333332248946124e-03, /* 0x3F811111, 0x1110F8A6 */
66 r = S2+z*(S3+z*S4) + z*w*(S5+z*S6);
  /external/clang/test/CXX/class/class.nest/
p3.cpp 21 struct S2 {
24 struct S2::S1 { };
  /external/clang/test/Index/Inputs/
t1.c 15 struct S2 {
22 ((struct S2 *)0)->x = 0;
  /external/clang/test/Index/
annotate-tokens.cpp 17 struct S2 { S1 *operator->(); };
18 void test3(S2 s2) {
19 s2->f();
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
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p3.cpp 60 struct S2 {
68 template void S<int>::S2::h();
73 template <typename T> void S<T>::S2::h() {}
  /external/clang/test/Modules/Inputs/
redecl-merge-left.h 19 struct S2 {
24 void consume_S2(struct S2*);
  /external/clang/test/PCH/
types.h 47 struct S2;
48 struct S2 {};
  /external/clang/test/SemaTemplate/
self-comparison.cpp 14 template <int A, int B> struct S2 {
44 S2<1, 1> s2; s2.foo<void>(); local
  /external/fdlibm/
k_sin.c 30 * |----- - (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 */
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /external/llvm/lib/Transforms/Utils/
SimplifyInstructions.cpp 51 SmallPtrSet<const Instruction*, 8> S1, S2, *ToSimplify = &S1, *Next = &S2;
  /external/valgrind/main/memcheck/tests/
dw4.c 42 struct s1 S2[30];
51 croak( &S2[0].i );
  /external/wpa_supplicant_8/src/crypto/
sha1-tlsprf.c 34 const u8 *S1, *S2;
63 * PRF = P_MD5(S1, label + seed) XOR P_SHA-1(S2, label + seed)
68 S2 = secret + L_S1;
70 /* The last byte of S1 will be shared with S2 */
71 S2--;
75 hmac_sha1_vector(S2, L_S2, 2, &SHA1_addr[1], &SHA1_len[1], A_SHA1);
86 hmac_sha1_vector(S2, L_S2, 3, SHA1_addr, SHA1_len,
89 hmac_sha1(S2, L_S2, A_SHA1, SHA1_MAC_LEN, A_SHA1);
  /ndk/tests/device/test-stlport_shared-exception/jni/
vtable2.cpp 19 struct S2 : virtual public S1
30 struct S4 : public S3, virtual public S2
43 void S2::s1 ()
47 void S2::s0 ()
80 S2 primary vtable
82 S2::s1 vcall offset
84 S2::s0 vcall offset
86 S2 offset to top
87 S2 RTTI
88 S2::s
    [all...]

Completed in 620 milliseconds

1 2 3 4 5