/external/clang/test/CXX/temp/temp.decls/temp.class.spec/ |
p8-0x.cpp | 3 template<int ...Values> struct X1; 6 struct X1<0, Values+1 ...>; // expected-error{{non-type template argument depends on a template parameter of the partial specialization}}
|
p9-0x.cpp | 7 struct X1; 10 struct X1<T, Types...> // expected-error{{class template partial specialization does not specialize any template argument; to define the primary template, remove the template argument list}}
|
/external/clang/test/CXX/class/class.mem/ |
p14.cpp | 11 struct X1 { 12 int X1; 13 X1(); // expected-error{{declarator requires an identifier}}
|
p13.cpp | 15 struct X1 { // expected-note{{previous use is here}} 16 enum X1 { }; // expected-error{{use of 'X1' with tag type that does not match previous declaration}}
|
/external/clang/test/CXX/special/class.ctor/ |
p1.cpp | 21 struct X1 { 24 X1<T>(); 25 X1<T>(int); 26 (X1<T>)(float); 27 X1(float, float); 28 (X1)(double); 29 X1<T> (f0)(int); 30 X1<T> (f0)(type); 31 X1 (f1)(int); 32 X1 (f1)(type) [all...] |
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/ |
p2.cpp | 8 struct X1 { 9 X1<T>(int); 10 (X1<T>)(float); 11 X1 f2(); 12 X1 f2(int); 13 X1 f2(float); 17 template<typename T> X1<T>::X1<T>(int) { } // expected-error{{out-of-line constructor for 'X1' cannot have template arguments}} 18 template<typename T> (X1<T>::X1<T>)(float) { } // expected-error{{out-of-line constructor for 'X1' cannot have template arg (…) [all...] |
/external/clang/test/CXX/temp/temp.res/temp.local/ |
p1.cpp | 17 template <int N1, const int& N2, const int* N3> struct X1 { 18 X1(); 19 ~X1(); 20 X1 f(const X1& x1a) { X1 x1b(x1a); return x1b; } 31 X1<42, i, &i> x1; (void)x1; local
|
/external/clang/test/SemaCXX/ |
type-formatting.cpp | 4 struct X1 { }; 8 const T *t = (const X0*)0; // expected-error{{cannot initialize a variable of type 'const X1 *' with an rvalue of type 'const X0 *'}} 10 template void f0<X1>(); // expected-note{{instantiation of}}
|
/external/clang/test/CXX/class.access/class.friend/ |
p2-cxx03.cpp | 7 class X1 { }; 9 X0<X1> x0a; 10 X0<X1 *> x0b;
|
p3-cxx0x.cpp | 15 class X1 { 27 X1<Y2> x1a; 28 X1<Y3> x1b; 29 X1<Y1> x1c; // expected-note{{in instantiation of template class 'X1<Y1>' requested here}}
|
/external/openfst/src/include/fst/ |
expectation-weight.h | 41 // X1 is usually a probability weight like LogWeight 45 // If X1 is distinct from X2, it is required that there is an external 46 // product between X1 and X2 and if both semriring are commutative, or 48 template <class X1, class X2> 49 class ExpectationWeight : public PairWeight<X1, X2> { 51 using PairWeight<X1, X2>::Value1; 52 using PairWeight<X1, X2>::Value2; 54 using PairWeight<X1, X2>::Reverse; 55 using PairWeight<X1, X2>::Quantize; 56 using PairWeight<X1, X2>::Member [all...] |
/external/clang/test/CXX/expr/expr.unary/expr.new/ |
p19.cpp | 28 struct X1 { 29 X1(); 43 ::new X1<2> [17]; 45 new X1<3> [17]; // expected-note 2{{instantiation}}
|
/external/clang/test/CXX/except/except.spec/ |
p14-ir.cpp | 10 struct X1 { 11 X1(); 12 X1(const X1 &) throw(); 15 struct X2 : X1 { 18 struct X3 : X0, X1 {
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p16.cpp | 4 template<class X1> void g1(T, X1); 13 template<class T> template<class X1> void A<T>::g1(T, X1) { } 16 template<> template<class X1> void A<int>::g1(int, X1); 20 void A<int>::g1(int, char); // X1 deduced as char
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/ |
omxVCCOMM_Copy16x16_s.s | 37 X1 RN 4 47 LDRD X1,[pSrc],Count ;//pSrc after loading pSrc=pSrc+step 52 STRD X1,[pDst],#8 53 LDRD X1,[pSrc],Count 58 STRD X1,[pDst],#8 59 LDRD X1,[pSrc],Count 64 STRD X1,[pDst],#8 65 LDRD X1,[pSrc],Count 70 STRD X1,[pDst],#8 71 LDRD X1,[pSrc],Coun [all...] |
/external/clang/test/SemaTemplate/ |
instantiate-non-dependent-types.cpp | 3 struct X1 { 11 typedef instantiate<&X1<int>::member> i; // expected-note{{in instantiation of}}
|
temp_class_order.cpp | 4 struct X1 { 9 struct X1<T*, U*> { 14 struct X1<T*, T*> { 19 struct X1<const T*, const T*> { 23 int array0[X1<int, int>::value == 0? 1 : -1]; 24 int array1[X1<int*, float*>::value == 1? 1 : -1]; 25 int array2[X1<int*, int*>::value == 2? 1 : -1]; 27 int array3[X1<const int*, CIP>::value == 3? 1 : -1];
|
temp_explicit_cxx0x.cpp | 7 template<typename T> struct X1 { }; 11 template struct Inner::X1<int>; 16 template struct ::N1::Inner::X1<float>;
|
unused-variables.cpp | 7 struct X1 { }; 12 X1 x1; // expected-warning{{unused variable 'x1'}} local 21 template void g<X0, X1>(); // expected-note{{in instantiation of}}
|
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/ |
p1.cpp | 11 struct X1 { 12 X1(int); 18 X1& get_X1() { return X0<X1>::value; }
|
/external/clang/test/CodeGenCXX/ |
template-linkage.cpp | 31 struct X1 : X0<T> { 35 template<typename T> void X1<T>::blarg() { } 38 extern template struct X1<char>; 40 // CHECK: define linkonce_odr void @_ZN2X1IcED1Ev(%struct.X1* %this) unnamed_addr 42 X1<char> i1c;
|
/external/chromium/base/ |
bind_internal_win.h | 39 template <typename R, typename X1> 40 struct FunctionTraits<R(__stdcall *)(X1)> { 41 typedef R (*NormalizedSig)(X1); 44 typedef X1 B1; 48 template <typename R, typename X1> 49 struct FunctionTraits<R(__fastcall *)(X1)> { 50 typedef R (*NormalizedSig)(X1); 53 typedef X1 B1; 57 template <typename R, typename X1, typename X2> 58 struct FunctionTraits<R(__stdcall *)(X1, X2)> [all...] |
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/ |
p9.cpp | 11 template<int N = N> struct X1 { }; 12 template<> struct X1<17> { static const bool value = true; }; 13 int array1[X1<>::value? 1 : -1];
|
/external/clang/test/CXX/expr/expr.post/expr.call/ |
p7-0x.cpp | 3 struct X1 { 4 X1(); 14 void f(X1 x1, X2 x2) { 15 vararg(x1); // okay
|
/external/clang/test/CXX/temp/temp.decls/temp.friend/ |
p4.cpp | 4 struct X1 { 9 X1<int> x1a; 10 X1<float> x1b; // expected-note {{in instantiation of}}
|