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

1 2 3 4 5 6 7 8

  /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());
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p8.cpp 18 struct S2 {
23 void S2::f(int i) {
  /external/clang/test/SemaCXX/
attr-aligned.cpp 8 typedef struct __attribute__((aligned(8))) S2 { char c; } AS;
9 static_assert(alignof(S2) == 8, "attribute not propagated");
10 static_assert(alignof(struct S2) == 8, "attribute ignored");
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}}
  /external/chromium_org/v8/test/mjsunit/compiler/
dead-string-char-code-at.js 31 var S2 = "@@string2";
53 var S3 = S1 + S2;
55 assertEquals(S1, dead1(S1, S2));
56 assertEquals(S1, dead2(S1, S2));
57 assertEquals("11", dead3(S1, S2));
59 assertEquals(S2, dead1(S2, 677));
60 assertEquals(S2, dead2(S2, S3));
61 assertEquals("11", dead3(S2, S3))
    [all...]
dead-string-char-code-at2.js 31 var S2 = "@@string2";
53 var S3 = S1 + S2;
55 assertEquals(S1, dead1(S1, S2));
56 assertEquals(S1, dead2(S1, S2));
57 assertEquals("11", dead3(S1, S2));
59 assertEquals(S2, dead1(S2, 677));
60 assertEquals(S2, dead2(S2, S3));
61 assertEquals("11", dead3(S2, S3))
    [all...]
  /external/clang/test/CodeGenCXX/
exception-spec-decay.cpp 17 struct S2 {
29 S2 <int[10]> s2; local
30 s2.foo();
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/PCH/
check-deserializations.cpp 16 struct S2 {
25 S2 *s2; variable
31 void test(S1*, S2*) {
  /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/Index/
annotate-tokens.cpp 17 struct S2 { S1 *operator->(); };
18 void test3(S2 s2) {
19 s2->f();
111 // CHECK: Keyword: "struct" [17:1 - 17:7] StructDecl=S2:17:8 (Definition)
112 // CHECK: Identifier: "S2" [17:8 - 17:10] StructDecl=S2:17:8 (Definition)
113 // CHECK: Punctuation: "{" [17:11 - 17:12] StructDecl=S2:17:8 (Definition)
120 // CHECK: Punctuation: ";" [17:29 - 17:30] StructDecl=S2:17:8 (Definition)
121 // CHECK: Punctuation: "}" [17:31 - 17:32] StructDecl=S2:17:8 (Definition
    [all...]
  /external/clang/test/Modules/Inputs/
redecl-merge-left.h 19 struct S2 {
24 void consume_S2(struct S2*);
  /external/clang/test/OpenMP/
for_private_messages.cpp 12 class S2 {
16 S2() : a(0) {}
18 const S2 b;
19 const S2 ba[5];
parallel_copyin_messages.cpp 11 class S2 {
14 S2():a(0) { }
15 S2 & operator =(S2 &s2) { return *this; }
44 S2 k;
parallel_for_copyin_messages.cpp 11 class S2 {
15 S2() : a(0) {}
16 S2 &operator=(S2 &s2) { return *this; }
47 S2 k;
parallel_for_private_messages.cpp 12 class S2 {
16 S2() : a(0) {}
18 const S2 b;
19 const S2 ba[5];
parallel_sections_copyin_messages.cpp 11 class S2 {
15 S2() : a(0) {}
16 S2 &operator=(S2 &s2) { return *this; }
47 S2 k;
parallel_sections_private_messages.cpp 12 class S2 {
16 S2() : a(0) {}
18 const S2 b;
19 const S2 ba[5];
sections_private_messages.cpp 12 class S2 {
16 S2() : a(0) {}
18 const S2 b;
19 const S2 ba[5];
simd_private_messages.cpp 12 class S2 {
15 S2():a(0) { }
17 const S2 b;
18 const S2 ba[5];

Completed in 706 milliseconds

1 2 3 4 5 6 7 8