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

1 2 3

  /external/clang/test/CodeGenCXX/
mangle-98.cpp 3 template <bool B> struct S3 {};
6 void f(S3<true>) {}
9 void f(S3<false>) {}
12 void f2(S3<100>) {}
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/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
warn-unused-variables.cpp 115 struct S3 {
118 S3 makeS3();
119 void testS3(S3 a) {
120 S3 x = makeS3(); // expected-warning {{unused variable 'x'}}
121 S3 y;
122 S3 z = a; // expected-warning {{unused variable 'z'}}
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() { };
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...]
  /external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/
p2.cpp 29 struct S3 {
30 S3() = default;
31 S3(const S3&) = default;
32 S3(S3&&) = default;
33 constexpr S3(int n) : n(n) {}
36 constexpr S3 s3a = S3(0);
37 constexpr S3 s3b = s3a
    [all...]
  /external/clang/test/Modules/Inputs/
redecl-merge-left.h 50 struct S3;
51 struct S3;
56 struct S3 *produce_S3(void);
redecl-merge-bottom.h 17 struct S3;
redecl-merge-right.h 56 struct S3;
59 void consume_S3(struct S3*);
  /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/Sema/
MicrosoftCompatibility.c 21 struct __declspec(appdomain) S3 {}; /* expected-warning {{__declspec attribute 'appdomain' is not supported}} *
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/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/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...]
  /frameworks/base/tests/RenderScriptTests/tests_v14/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)

Completed in 308 milliseconds

1 2 3