/external/clang/test/SemaTemplate/ |
copy-ctor-assign.cpp | 38 struct X1 { 39 X1 &operator=(const X1&); 43 struct X2 : X1 {
|
extern-templates.cpp | 42 class X1 { 50 void X1<T>::g(T t) { 54 extern template class X1<void*>; 56 void g_X1(X1<void*> x1, void *ptr) { 57 x1.g(ptr); 60 extern template void X1<const void*>::g(const void*); 62 void g_X1_2(X1<const void *> x1, const void *ptr) { 63 x1.g(ptr) [all...] |
instantiate-member-template.cpp | 25 struct X1 { 63 struct X1<T>::Inner4 { 72 U X1<T>::Inner4<U>::value; // expected-error{{reference variable}} 77 V X1<T>::Inner4<U>::f2(T t, U u, V) { 82 X1<void>::Inner0<int> *xvip; // okay 83 X1<void>::Inner0<int> xvi; // expected-note{{instantiation}} 85 X1<int>::Inner1<void> *xivp; // okay 86 X1<int>::Inner1<void> xiv; // expected-note{{instantiation}} 88 X1<int>::Inner2<void>::SuperInner *xisivp; // okay 89 X1<int>::Inner2<void>::SuperInner xisiv; // expected-note{{instantiation} [all...] |
injected-class-name.cpp | 39 struct X1 { 40 void f0(const X1&); // expected-note{{here}} 41 void f0(X1&); 42 void f0(const X1<T, N>&); // expected-error{{redecl}}
|
constructor-template.cpp | 30 struct X1 { 31 X1(const X1&); 32 template<typename U> X1(const X1<U>&); 37 typedef X1<T> A; 44 void test_X1(X1<int> xi) {
|
instantiate-template-template-parm.cpp | 35 struct X1 { }; 39 X1<TT> x1; // expected-error{{has different template parameters}} member in struct:X2 70 template<class T> struct X1 84 template<class T> template<class U> struct X1<T>::Inner 95 X1<double> simplex_;
|
/external/clang/test/CodeGenCXX/ |
visibility-inlines-hidden.cpp | 18 struct X1 { 28 inline void X1<T>::f3() { } 31 inline void X1<int>::f4() { } 37 extern template struct X1<float>; 39 void use(X0 *x0, X1<int> *x1, X2 *x2, X1<float> *x3) { 51 x1->f1(); 53 x1->f2(); 55 x1->f3() [all...] |
microsoft-abi-rtti.cpp | 16 struct X1 { virtual void f() {} }; 17 struct V1 : X1 {}; 69 // CHECK: @"\01??_R2Y1@@8" = linkonce_odr constant [7 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@Y1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* null] 74 // CHECK: @"\01??_R2W1@@8" = linkonce_odr constant [4 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* null] 78 // CHECK: @"\01??_R2V1@@8" = linkonce_odr constant [3 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@X1@@8", %rtti.BaseClassDescriptor* null] 80 // CHECK: @"\01??_R1A@?0A@EA@X1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUX1@@@8" to i8*), i32 0, i32 0, i32 -1, i32 0, i32 64, %rtti.ClassHierarchyDescriptor* @"\01??_R3X1@@8" } 83 // CHECK: @"\01??_R2X1@@8" = linkonce_odr constant [2 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@X1@@8", %rtti.BaseClassDescriptor* null] 84 // CHECK: @"\01??_R1A@A@3EA@X1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUX1@@@8" to i8*), i32 0, i32 0, i32 0, i32 4, i32 64, %rtti.ClassHierarchyDescriptor* @"\01??_R3X1@@8" } [all...] |
implicit-copy-constructor.cpp | 62 template <class > struct X1 { X1( X1& , int = 0 ) { } }; 63 struct X2 { X1<int> result; };
|
thunk-use-after-free.cpp | 32 struct X1; 33 struct CCC:DDD { virtual void xxx (HHH < X1 >); }; 38 void xxx (HHH < X1 >); 39 vector < HHH < X1 > >aaa;
|
vtt-layout.cpp | 35 class X1 { int i; }; 36 class C3 : public X1 { int i; }; 54 class X1 { int i; }; 55 class C3 : public X1 { int i; };
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p3.cpp | 13 template<typename> struct X1; // expected-note 5{{declared here}} 16 template void X1<int>::f0<int>(int); // expected-error {{implicit instantiation of undefined template}} 21 template struct X1<float>; // expected-error{{explicit instantiation of undefined template}} 36 template void X1<int>::f1(int); // expected-error {{undefined template}} 37 template void X1<int>::f1<int>(int); // expected-error {{undefined template}} 39 template int X1<int>::member; // expected-error {{undefined template}}
|
p2.cpp | 34 struct X1 { // expected-note{{explicit instantiation refers here}} 42 template struct X1<int>; // expected-warning{{must occur in}}
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/ |
omxVCCOMM_Copy16x16_s.s | 37 X1 DN D1.S8 48 VLD1 {X0,X1},[pSrc@128],step ;// Load 16 bytes from 16 byte aligned pSrc and pSrc=pSrc + step after loading 53 VST1 {X0,X1,X2,X3},[pDst@128]! ;// Store 32 bytes to 16 byte aligned pDst 57 VLD1 {X0,X1},[pSrc@128],step 62 VST1 {X0,X1,X2,X3},[pDst@128]! 66 VLD1 {X0,X1},[pSrc@128],step 71 VST1 {X0,X1,X2,X3},[pDst@128]! 75 VLD1 {X0,X1},[pSrc@128],step 80 VST1 {X0,X1,X2,X3},[pDst@128]!
|
omxVCCOMM_Copy8x8_s.s | 38 X1 DN D1.S8 46 VLD1 {X1},[pSrc],step 50 VST1 {X0,X1},[pDst]! ;// Store 16 bytes to 8 byte aligned pDst 54 VLD1 {X1},[pSrc],step 58 VST1 {X0,X1},[pDst]!
|
/external/clang/test/CXX/temp/temp.arg/temp.arg.template/ |
p3-0x.cpp | 31 struct X1 { }; 37 X1<int, X1a> inst_x1a; 38 X1<long, X1b> inst_x1b; 39 X1<short, X1c> inst_x1c; 40 X1<short, X1d> inst_x1d; // expected-error{{template template argument has different template parameters than its corresponding template template paramete}}
|
/external/clang/test/SemaCXX/ |
user-defined-conversions.cpp | 71 struct X1 { 72 X1(X1&); // expected-note{{candidate constructor not viable: expects an l-value for 1st argument}} 76 operator X1(); 79 int &f(X1); 83 int &ir = f(b); // expected-error{{no viable constructor copying parameter of type 'X1'}}
|
member-pointers-2.cpp | 42 struct X1 48 void f(X1 p) {
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
fixed-expansion.cpp | 24 class X1 { 29 static_assert(is_same<X1<int, int>::type, 33 static_assert(is_same<X1<int, int, float>::type, 37 static_assert(is_same<X1<int, int, float, double>::type, 50 class X1 { 55 static_assert(is_same<X1<int>::type, 59 static_assert(is_same<X1<int, float>::type, 63 static_assert(is_same<X1<int, float, double>::type,
|
/external/clang/test/ASTMerge/Inputs/ |
class-template1.cpp | 5 struct X1;
|
class-template2.cpp | 5 struct X1;
|
/external/clang/test/Parser/ |
cxx11-brace-initializers.cpp | 12 S X1{1, 1,};
|
/frameworks/compile/mclinker/lib/Target/Mips/TargetInfo/ |
MipsTargetInfo.cpp | 19 X1(TheMipselTarget, "mipsel");
|
/external/scrypt/lib/crypto/ |
crypto_scrypt-sse.c | 87 __m128i X0, X1, X2, X3; 92 X1 = B[1]; 99 X1 = _mm_xor_si128(X1, _mm_slli_epi32(T, 7)); 100 X1 = _mm_xor_si128(X1, _mm_srli_epi32(T, 25)); 101 T = _mm_add_epi32(X1, X0); 104 T = _mm_add_epi32(X2, X1); 112 X1 = _mm_shuffle_epi32(X1, 0x93) [all...] |
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/ |
cmsintrp.c | 340 X0, Y0, X1, Y1; 355 X1 = X0 + (Input[0] >= 1.0 ? 0 : p->opta[1]); 364 d10 = DENS(X1, Y0); 365 d11 = DENS(X1, Y1); 395 register int X0, X1, Y0, Y1; 413 X1 = X0 + (Input[0] == 0xFFFFU ? 0 : p->opta[1]); 422 d10 = DENS(X1, Y0); 423 d11 = DENS(X1, Y1); 452 X0, Y0, Z0, X1, Y1, Z1; 472 X1 = X0 + (Input[0] >= 1.0 ? 0 : p->opta[2]) [all...] |