HomeSort by relevance Sort by last modified time
    Searched refs:S1 (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /external/clang/test/SemaCXX/
out-of-line-def-mismatch.cpp 4 struct S1;
10 void func(S1*); // expected-note {{type of 1st parameter of member declaration does not match definition ('N2::S1 *' vs 'N2::N1::S1 *')}}
11 void func(C1&, unsigned, const S1*); // expected-note {{type of 3rd parameter of member declaration does not match definition ('const N2::S1 *' vs 'const N2::N1::S1 *')}}
12 void func(const S1*, unsigned); //expected-note {{type of 1st parameter of member declaration does not match definition ('const N2::S1 *' vs 'N2::N1::S1')}}
    [all...]
type-definition-in-specifier.cpp 4 struct S1;
14 typedef struct S1 { int x; } S1_typedef;
warn-unused-variables.cpp 85 struct S1 {
86 S1();
88 S1 makeS1();
89 void testS1(S1 a) {
91 S1 x = makeS1(); // expected-warning {{unused variable 'x'}}
94 S1 y;
97 S1 z = a; // expected-warning {{unused variable 'z'}}
116 S1 m;
elaborated-type-specifier.cpp 6 typedef struct S1 {
11 } S1;
13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) {
14 if (s1->x == s2) return true;
15 if (s1->y == s3) return true;
namespace.cpp 21 namespace S1 {
32 namespace S1 {
49 namespace S1 {
  /external/clang/test/PCH/
check-deserializations.cpp 8 struct S1 {
17 void test(S1*) {
  /external/clang/test/CXX/class/class.nest/
p3.cpp 19 struct S1 { };
21 struct S1;
23 struct S2::S1 { };
24 S1 s1; member in namespace:PR6107
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 5 struct S1 {
6 constexpr S1() = default; // expected-error {{defaulted definition of default constructor is not constexpr}}
7 constexpr S1(const S1&) = default;
8 constexpr S1(S1&&) = default;
9 constexpr S1 &operator=(const S1&) = default; // expected-error {{explicitly-defaulted copy assignment operator may not have}}
10 constexpr S1 &operator=(S1&&) = default; // expected-error {{explicitly-defaulted move assignment operator may not have}
    [all...]
  /external/llvm/include/llvm/ADT/
SetOperations.h 23 bool set_union(S1Ty &S1, const S2Ty &S2) {
28 if (S1.insert(*SI).second)
36 /// is nicer to use. Functionally, this iterates through S1, removing
40 void set_intersect(S1Ty &S1, const S2Ty &S2) {
41 for (typename S1Ty::iterator I = S1.begin(); I != S1.end();) {
44 if (!S2.count(E)) S1.erase(E); // Erase element if not in S2
51 S1Ty set_difference(const S1Ty &S1, const S2Ty &S2) {
53 for (typename S1Ty::const_iterator SI = S1.begin(), SE = S1.end()
    [all...]
StringSwitch.h 85 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
87 return Case(S0, Value).Case(S1, Value);
91 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
93 return Case(S0, Value).Case(S1, Value).Case(S2, Value);
97 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value);
104 StringSwitch& Cases(const char (&S0)[N0], const char (&S1)[N1],
107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value)
  /external/stlport/test/unit/
mfunptr_test.cpp 40 struct S1 { } s1; variable in typeref:struct:S1
43 int f1(S1&);
44 int f2(S1&, S2&);
45 int f1c(const S1&);
46 int f2c(const S1&, const S2&);
48 void vf1(S1&);
49 void vf2(S1&, S2&);
50 void vf1c(const S1&);
51 void vf2c(const S1&, const S2&)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
mfunptr_test.cpp 40 struct S1 { } s1; variable in typeref:struct:S1
43 int f1(S1&);
44 int f2(S1&, S2&);
45 int f1c(const S1&);
46 int f2c(const S1&, const S2&);
48 void vf1(S1&);
49 void vf2(S1&, S2&);
50 void vf1c(const S1&);
51 void vf2c(const S1&, const S2&)
    [all...]
  /ndk/tests/device/test-stlport/unit/
mfunptr_test.cpp 40 struct S1 { } s1; variable in typeref:struct:S1
43 int f1(S1&);
44 int f2(S1&, S2&);
45 int f1c(const S1&);
46 int f2c(const S1&, const S2&);
48 void vf1(S1&);
49 void vf2(S1&, S2&);
50 void vf1c(const S1&);
51 void vf2c(const S1&, const S2&)
    [all...]
  /external/clang/test/Index/Inputs/
t1.c 11 struct S1 {
20 struct S1 s1; local
21 s1.x = 0;
  /external/clang/test/Index/
annotate-tokens.cpp 16 struct S1 { void f(); };
17 struct S2 { S1 *operator->(); };
84 // CHECK: Keyword: "struct" [16:1 - 16:7] StructDecl=S1:16:8 (Definition)
85 // CHECK: Identifier: "S1" [16:8 - 16:10] StructDecl=S1:16:8 (Definition)
86 // CHECK: Punctuation: "{" [16:11 - 16:12] StructDecl=S1:16:8 (Definition)
91 // CHECK: Punctuation: ";" [16:21 - 16:22] StructDecl=S1:16:8 (Definition)
92 // CHECK: Punctuation: "}" [16:23 - 16:24] StructDecl=S1:16:8 (Definition)
97 // CHECK: Identifier: "S1" [17:13 - 17:15] TypeRef=struct S1:16:
    [all...]
  /bionic/libm/src/
k_sin.c 32 * sin(x) ~ x + S1*x + ... + S6*x
36 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
45 * sin(x) = x + (S1*x + (x *(r-y/2)+y))
53 S1 = -1.66666666666666324348e-01, /* 0xBFC55555, 0x55555549 */
68 if(iy==0) return x+v*(S1+z*r);
69 else return x-((z*(half*y-v*r)-y)-v*S1);
k_sinf.c 28 S1 = -0x15555554cbac77.0p-55, /* -0.166666666416265235595 */
46 return (x + s*(S1+z*S2)) + s*w*r;
  /external/clang/test/Modules/Inputs/
redecl-merge-top.h 14 struct S1;
redecl-merge-bottom.h 16 struct S1;
  /external/openssh/regress/
keygen-change.sh 6 S1="secret1"
13 ${SSHKEYGEN} -q -N ${S1} -t $t -f $OBJ/$t-key
15 ${SSHKEYGEN} -p -P ${S1} -N ${S2} -f $OBJ/$t-key > /dev/null
  /external/clang/test/CodeGenCXX/
mangle-subst.cpp 51 template <typename T> struct S1 {};
52 template<typename T> void ft3(S1<T>, S1<char>) { }
55 template void ft3<int>(S1<int>, S1<char>);
  /external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/
p7.cpp 46 struct S1 {
48 S1 &operator=(int*);
52 S1 &s1 = operator=(&this->x); local
  /external/fdlibm/
k_sin.c 26 * sin(x) ~ x + S1*x + ... + S6*x
30 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
39 * sin(x) = x + (S1*x + (x *(r-y/2)+y))
50 S1 = -1.66666666666666324348e-01, /* 0xBFC55555, 0x55555549 */
72 if(iy==0) return x+v*(S1+z*r);
73 else return x-((z*(half*y-v*r)-y)-v*S1);
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
sema.cpp 52 struct S1 {
60 S1 s;
67 void (S1::*mpnospec)();
68 void (S1::*mpallspec)() throw(...);
69 void (S1::*mpintspec)() throw(int);
70 void (S1::*mpemptyspec)() throw();
73 S1 s;
142 P(typeid(*(S1*)0));
167 B(b, S1() + T());
183 void operator +(const S1&, float) throw()
    [all...]
  /external/clang/test/Sema/
type-spec-struct-union.c 7 typedef struct S1 {
12 } S1;
14 int test_struct_scope(S1 *s1, struct S2 *s2, struct S3 *s3) {
15 if (s1->u1.x == s2) return 1;
16 if (s1->u1.y == s3) return 1;
20 int test_struct_scope_2(S1 *s1) {
22 if (s1->u1.x == s2) return 1; /* expected-warning {{comparison of distinct pointer types ('struct S2 *' and 'struct S2 *')}} */

Completed in 530 milliseconds

1 2 3 4 5