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

1 2

  /external/clang/test/SemaCXX/
ptrtomember.cpp 20 struct S3 {
24 void f3(S3* p, void (S3::*m)()) {
type-definition-in-specifier.cpp 6 struct S3;
18 struct S3 { int x; } s3; local
namespace.cpp 26 namespace S3 {
39 namespace S3 {
51 namespace S3 {
elaborated-type-specifier.cpp 9 struct S3 *y;
13 bool test_elab(S1 *s1, struct S2 *s2, struct S3 *s3) {
15 if (s1->y == s3) return true;
warn-dangling-field.cpp 26 struct S3 {
28 S3(Y y) : x1(y), x2(y) {} // no-warning: conversion operator
warn-reorder-ctor-initialization.cpp 12 s3(3), // expected-warning {{field 's3' will be initialized after base 'BB1'}}
18 int s3; member in class:complex
92 struct S3 { };
94 struct S4: virtual S3, S2 {
95 S4() : S2(), // expected-warning {{base class 'T1::S2' will be initialized after base 'T1::S3'}}
96 S3() { };
empty-class-layout.cpp 49 struct S3 {
53 struct S4 : Empty, S3 {
57 struct S5 : S3, Empty {};
warn-overloaded-virtual.cpp 29 struct S3 : public B3 {
  /external/llvm/unittests/ADT/
ImmutableSetTest.cpp 65 ImmutableSet<int> S3 = f.add(S, 2);
67 EXPECT_FALSE(S3.isEmpty());
68 EXPECT_FALSE(S == S3);
69 EXPECT_TRUE(S != S3);
71 EXPECT_TRUE(S3.contains(2));
73 EXPECT_FALSE(S2 == S3);
74 EXPECT_TRUE(S2 != S3);
76 EXPECT_FALSE(S3.contains(3));
84 ImmutableSet<int> S3 = f.add(f.add(f.add(S2, 9), 20), 43);
89 EXPECT_FALSE(S3.isEmpty())
    [all...]
  /bionic/libm/src/
k_sin.c 36 * |----- - (1+S1*x +S2*x +S3*x +S4*x +S5*x +S6*x )| <= 2
43 * r = x *(S2+x *(S3+x *(S4+x *(S5+x *S6))))
55 S3 = -1.98412698298579493134e-04, /* 0xBF2A01A0, 0x19C161D5 */
67 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
k_sinf.c 30 S3 = -0x1a00f9e2cae774.0p-65, /* -0.000198393348360966317347 */
44 r = S3+z*S4;
  /external/clang/test/CXX/expr/expr.unary/expr.unary.noexcept/
sema.cpp 172 struct S3 {
173 virtual ~S3() throw();
174 S3() throw();
175 explicit S3(int);
176 S3(const S2&);
181 P(dynamic_cast<S3&>(f2<T&>()));
184 void operator +(const S1&, const S3&);
187 late<S3, false>();
188 late2<S3>();
  /external/clang/test/CodeGenCXX/
warn-padded-packed.cpp 14 struct S3 {
76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
  /external/clang/test/SemaTemplate/
self-comparison.cpp 21 struct S3 {
45 S3 s3; s3.foo<1, 1>(); 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))))
52 S3 = -1.98412698298579493134e-04, /* 0xBF2A01A0, 0x19C161D5 */
71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
  /frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
UT_vector.java 121 Short3 S3 = s.get_u8_3();
122 if (S3.x != 1 || S3.y != 2 || S3.z != 3) {
125 S3.x = 2;
126 S3.y = 3;
127 S3.z = 4;
128 s.set_u8_3(S3);
148 S3 = s.get_i16_3();
149 if (S3.x != 1 || S3.y != 2 || S3.z != 3)
    [all...]
  /external/llvm/include/llvm/ADT/
StringSwitch.h 98 const char (&S2)[N2], const char (&S3)[N3],
100 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value);
105 const char (&S2)[N2], const char (&S3)[N3],
107 return Case(S0, Value).Case(S1, Value).Case(S2, Value).Case(S3, Value)
  /external/clang/test/Sema/
type-spec-struct-union.c 10 struct S3 *y;
14 int test_struct_scope(S1 *s1, struct S2 *s2, struct S3 *s3) {
16 if (s1->u1.y == s3) return 1;
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p5.cpp 84 template <const volatile int& N> struct S3 { };
105 S3<i> s3; local
106 S3<ci> s3c;
107 S3<vi> s3v;
108 S3<cvi> s3cv;
  /external/clang/test/ASTMerge/Inputs/
struct1.c 24 struct S3 { int i; float f; double d; } x3;
struct2.c 21 struct S3 { int i; float f; } x3;
  /external/clang/test/CXX/class/class.mem/
p1.cpp 30 struct S3
  /external/clang/test/PCH/
cxx-templates.cpp 31 S3<int> s3; local
32 s3.m();
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 43 constexpr struct S3 {} s3 = S3(); variable in typeref:struct:S3
p3.cpp 113 struct S3 { }; // expected-error {{types cannot be defined in a constexpr function}}

Completed in 1332 milliseconds

1 2