HomeSort by relevance Sort by last modified time
    Searched defs:S2 (Results 26 - 50 of 327) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
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}}
function-extern-c.cpp 22 struct S2 {
32 extern "C" S2 f5( void );
new-null.cpp 17 struct S2 {
warn-dangling-field.cpp 21 struct S2 {
23 S2(int i) : x(i) {} // expected-warning {{binding reference member 'x' to a temporary}}
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug477.go 16 type S2 struct {
30 var s2 S2
31 var i1 I = s2.F1
32 var i2 I = s2.F2
  /prebuilts/go/linux-x86/test/fixedbugs/
bug477.go 16 type S2 struct {
30 var s2 S2
31 var i1 I = s2.F1
32 var i2 I = s2.F2
  /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/CodeGenCXX/
regparm.cpp 19 struct S2 {
23 void __attribute__((regparm(3))) foo3(struct S2 a, int b);
25 void bar3(struct S2 a, int b) {
debug-info-nodebug.cpp 33 struct S2 {
37 int S2::static_member = 5;
39 S2 junk;
40 func1(S2::static_const_member);
  /external/clang/test/Index/Inputs/
t1.c 15 struct S2 {
22 ((struct S2 *)0)->x = 0;
  /external/llvm/unittests/Support/
TypeNameTest.cpp 24 struct S2 {};
29 StringRef S2Name = getTypeName<S2>();
37 EXPECT_TRUE(S2Name.endswith("S2")) << S2Name.str();
39 EXPECT_TRUE(S2Name.endswith("::S2")) << S2Name.str();
  /device/google/contexthub/firmware/lib/libm/
kf_sin.c 25 S2 = 8.3333337680e-03, /* 0x3c088889 */
46 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
k_sin.c 34 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
41 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
52 S2 = 8.33333333332248946124e-03, /* 0x3F811111, 0x1110F8A6 */
69 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /external/clang/test/Analysis/
symbol-reaper.c 54 struct S2 {
56 } s2; variable in typeref:struct:S2
62 s2.array[x].field = 1;
  /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/
parallel_copyin_messages.cpp 11 class S2 {
14 S2():a(0) { }
15 S2 & operator =(S2 &s2) { return *this; }
51 S2 k;
  /external/clang/test/PCH/
check-deserializations.cpp 19 struct S2 {
37 S2 *s2;
43 void test(S1*, S2*) {
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)));

Completed in 641 milliseconds

12 3 4 5 6 7 8 91011>>