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

1 2 3 4 5 6

  /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...]
warn-unused-variables.cpp 86 struct S1 {
87 S1();
89 S1 makeS1();
90 void testS1(S1 a) {
92 S1 x = makeS1(); // expected-warning {{unused variable 'x'}}
95 S1 y;
98 S1 z = a; // expected-warning {{unused variable 'z'}}
117 S1 m;
128 struct S1 {
129 ~S1();
    [all...]
type-definition-in-specifier.cpp 4 struct S1;
14 typedef struct S1 { int x; } S1_typedef;
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 20 struct S1 { };
22 struct S1;
24 struct S2::S1 { };
25 S1 s1; member in namespace:PR6107
  /external/clang/test/CodeGenCXX/
fastcall.cpp 10 struct S1 {
12 S1(const S1 &y);
15 void __attribute__((fastcall)) foo2(S1 a, int b);
16 void bar2(S1 a, int b) {
18 // CHECK: call x86_fastcallcc void @_Z4foo22S1i(%struct.S1* inreg %{{.*}}, i32 inreg %
regparm.cpp 8 struct S1 {
10 S1(const S1 &y);
13 void __attribute__((regparm(3))) foo2(S1 a, int b);
14 // CHECK: declare void @_Z4foo22S1i(%struct.S1* inreg, i32 inreg)
15 void bar2(S1 a, int b) {
microsoft-uuidof.cpp 11 struct __declspec(uuid("12345678-1234-1234-1234-1234567890ab")) S1 { } s1;
16 GUID g = __uuidof(S1);
18 // First global use of __uuidof(S1) forces the creation of the global.
21 const GUID& gr = __uuidof(S1);
24 const GUID* gp = &__uuidof(S1);
44 GUID s1_1 = __uuidof(S1);
48 GUID s1_2 = __uuidof(S1);
52 GUID s1_3 = __uuidof(s1);
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/dcl.dcl/dcl.attr/dcl.align/
p5.cpp 18 struct S1 {
25 S1 s1; variable
27 struct alignas(2) S4 : S1 { // expected-error {{requested alignment is less than minimum alignment of 8 for type 'S4'}}
29 struct S5 : S1 {
30 alignas(2) S1 s1; // expected-error {{requested alignment is less than minimum alignment of 8 for type 'S1'}} member in struct:S5
33 S1 s1; member in struct:S6
    [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...]
  /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...]
  /external/clang/test/Modules/Inputs/
redecl-merge-top.h 14 struct S1;
  /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/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
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_sin.c 31 * sin(x) ~ x + S1*x + ... + S6*x
35 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
44 * sin(x) = x + (S1*x + (x *(r-y/2)+y))
52 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 27 S1 = -0x15555554cbac77.0p-55, /* -0.166666666416265235595 */
45 return (x + s*(S1+z*S2)) + s*w*r;
  /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);

Completed in 537 milliseconds

1 2 3 4 5 6