/external/clang/test/SemaCXX/ |
elaborated-type-specifier.cpp | 22 void test_elab2(struct S4 *s4); // expected-note{{'NS::S4' declared here}} 25 void X::test_elab2(S4 *s4) { } // expected-note{{passing argument to parameter 's4' here}} 29 struct S4 *s4 = 0; local 30 x.test_elab2(s4); // expected-error{{cannot initialize a parameter of type 'NS::S4 *' with an lvalue of type 'struct S4 *'} 38 S4 *s4; \/\/ expected-error{{unknown type name 'S4'; did you mean 'NS::S4'?}} local [all...] |
type-definition-in-specifier.cpp | 7 struct S4; 20 (void)static_cast<struct S4 { int x; } *>(0); // expected-error{{can not be defined}}
|
cxx11-crashes.cpp | 23 struct S4 { 29 S4 x; 33 S4 foo2() { 34 S4 s;
|
warn-dangling-field.cpp | 31 template <typename T> struct S4 { 33 S4(int i) : x(i) {} // expected-warning {{binding reference member 'x' to stack allocated parameter 'i'}} 36 template struct S4<int>; // no warning from this instantiation 37 template struct S4<int&>; // expected-note {{in instantiation}}
|
dcl_ambig_res.cpp | 37 struct S4 { 40 S4<int()> x; //type-id 41 S4<int(1)> y; // expected-error{{must be a type}}
|
/external/clang/test/CXX/class/class.mem/ |
p1.cpp | 33 struct S4 39 struct S4 44 int S4::v4; //expected-note{{previous definition is here}} 45 int S4::v4; //expected-error{{redefinition of 'v4'}}
|
/external/clang/test/CXX/dcl.decl/dcl.fct.def/dcl.fct.def.default/ |
p2.cpp | 41 struct S4 { 42 S4() = default; 43 S4(const S4&) = default; // expected-note {{here}} 44 S4(S4&&) = default; // expected-note {{here}} 47 constexpr S4 s4a{}; // ok 48 constexpr S4 s4b = S4(); // expected-error {{constant expression}} expected-note {{non-constexpr constructor}} 49 constexpr S4 s4c = s4a; // expected-error {{constant expression}} expected-note {{non-constexpr constructor} [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
k_sinf.c | 30 S4 = 0x16cd878c3b46a7.0p-71; /* 0.0000027183114939898219064 */ 43 r = S3+z*S4;
|
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)))) 55 S4 = 2.75573137070700676789e-06, /* 0x3EC71DE3, 0x57B1FE7D */ 66 r = S2+z*(S3+z*S4) + z*w*(S5+z*S6);
|
/external/clang/test/OpenMP/ |
parallel_private_messages.cpp | 28 class S4 { // expected-note {{'S4' declared here}} 30 S4(); 32 S4(int v):a(v) { } 44 S4 e(4); // expected-note {{'e' defined here}}
|
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/ |
UT_vector.java | 130 Short4 S4 = s.get_u8_4(); 131 if (S4.x != 1 || S4.y != 2 || S4.z != 3 || S4.w != 4) { 134 S4.x = 2; 135 S4.y = 3; 136 S4.z = 4; 137 S4.w = 5; 138 s.set_u8_4(S4); [all...] |
/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
UT_vector.java | 130 Short4 S4 = s.get_u8_4(); 131 if (S4.x != 1 || S4.y != 2 || S4.z != 3 || S4.w != 4) { 134 S4.x = 2; 135 S4.y = 3; 136 S4.z = 4; 137 S4.w = 5; 138 s.set_u8_4(S4); [all...] |
/frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/ |
UT_vector.java | 130 Short4 S4 = s.get_u8_4(); 131 if (S4.x != 1 || S4.y != 2 || S4.z != 3 || S4.w != 4) { 134 S4.x = 2; 135 S4.y = 3; 136 S4.z = 4; 137 S4.w = 5; 138 s.set_u8_4(S4); [all...] |
/external/llvm/unittests/ADT/ |
ImmutableSetTest.cpp | 85 ImmutableSet<int> S4 = f.add(S2, 9); 90 EXPECT_FALSE(S4.isEmpty()); 109 EXPECT_TRUE(S4.contains(9)); 110 EXPECT_TRUE(S4.contains(3)); 111 EXPECT_TRUE(S4.contains(4)); 112 EXPECT_TRUE(S4.contains(5)); 113 EXPECT_FALSE(S4.contains(20)); 114 EXPECT_FALSE(S4.contains(43)); 123 ImmutableSet<int> S4 = f.remove(S3, 3); 127 EXPECT_FALSE(S4.contains(3)) [all...] |
VariadicFunctionTest.cpp | 79 std::string S4("Fab4"); 81 StringAppend(&S4, "John", "Paul", "George", "Ringo")); 82 EXPECT_EQ("Fab4JohnPaulGeorgeRingo", S4);
|
/external/clang/test/CodeGenCXX/ |
warn-padded-packed.cpp | 19 struct S4 { 76 void f(S1*, S2*, S3*, S4*, S5*, S6*, S7*, S8*, S9*, S10*, S11*, S12*, S13*) { }
|
/external/clang/test/Modules/Inputs/ |
redecl-merge-left.h | 52 struct S4 { 57 void consume_S4(struct S4*);
|
redecl-merge-right.h | 57 struct S4; 60 struct S4 *produce_S4(void);
|
/external/clang/test/SemaTemplate/ |
self-comparison.cpp | 28 template <int A> struct S4 { 46 S4<1> s4; s4.foo<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)))) 53 S4 = 2.75573137070700676789e-06, /* 0x3EC71DE3, 0x57B1FE7D */ 71 r = S2+z*(S3+z*(S4+z*(S5+z*S6)));
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
vtable2.cpp | 30 struct S4 : public S3, virtual public S2 55 void S4::s1 () 101 S4 primary vtable 106 S4 offset to top 107 S4 RTTI 109 S4::s1 111 S2-in-S4 secondary vtable 114 S4::s1 vcall offset 118 S4 RTTI 120 S4::s 152 S4 s4; local [all...] |
/ndk/tests/device/test-stlport_static-exception/jni/ |
vtable2.cpp | 30 struct S4 : public S3, virtual public S2 55 void S4::s1 () 101 S4 primary vtable 106 S4 offset to top 107 S4 RTTI 109 S4::s1 111 S2-in-S4 secondary vtable 114 S4::s1 vcall offset 118 S4 RTTI 120 S4::s 152 S4 s4; local [all...] |
/external/clang/test/CodeGen/ |
pragma-pack-1.c | 44 struct S4 54 } s4; variable in typeref:struct:S4 64 // CHECK: %struct.S4 = type { [3 x i8], %struct.T4, i32 }
|
/external/clang/test/Sema/ |
type-spec-struct-union.c | 27 // the type "struct S4" declared in the function parameter list has 29 // case, is that the code is ill-formed but we warn about the two S4's 31 int test_struct_scope_3(struct S4 * s4) { // expected-warning{{declaration of 'struct S4' will not be visible outside of this function}} 32 struct S4 { int y; } *s4_2 = 0; 33 /* if (s4 == s4_2) return 1; */
|
/art/runtime/arch/arm/ |
registers_arm.h | 61 S4 = 4,
|