Searched refs:X1 (Results 1 - 25 of 157) sorted by relevance

1234567

/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
H A Dp8-0x.cpp3 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}}
H A Dp9-0x.cpp7 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}} struct
/external/clang/test/CXX/class/class.mem/
H A Dp14.cpp11 struct X1 { struct
12 int X1; // expected-note{{hidden by a non-type declaration of 'X1' here}} member in struct:X1
13 X1(); // expected-error{{must use 'struct' tag to refer to type 'X1' in this scope}} \
H A Dp13.cpp15 struct X1 { // expected-note{{previous use is here}} struct
16 enum X1 { }; // expected-error{{use of 'X1' with tag type that does not match previous declaration}} enum in struct:X1
/external/clang/test/CXX/special/class.ctor/
H A Dp1.cpp21 struct X1 { struct
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 (f
39 template<typename T> X1<T>::X1() { } function in class:X1
40 template<typename T> (X1<T>::X1)(double) { } function
[all...]
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/
H A Dp2.cpp8 struct X1 { struct
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}} function in class:X1
18 template<typename T> (X1< function
[all...]
/external/clang/test/CXX/temp/temp.res/temp.local/
H A Dp1.cpp17 template <int N1, const int& N2, const int* N3> struct X1 { struct
18 X1();
19 ~X1();
20 X1 f(const X1& x1a) { X1 x1b(x1a); return x1b; }
31 X1<42, i, &i> x1; (void)x1;
/external/clang/test/SemaCXX/
H A Dtype-formatting.cpp4 struct X1 { }; struct
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}}
H A Dstatic-array-member.cpp13 struct X1 { struct
18 T X1<T, N>::array[N];
/external/clang/test/CXX/class.access/class.friend/
H A Dp2-cxx03.cpp7 class X1 { }; class
9 X0<X1> x0a;
10 X0<X1 *> x0b;
H A Dp3-cxx0x.cpp15 class X1 { class
27 X1<Y2> x1a;
28 X1<Y3> x1b;
29 X1<Y1> x1c; // expected-note{{in instantiation of template class 'X1<Y1>' requested here}}
/external/clang/test/SemaTemplate/
H A Dtemp_explicit_cxx0x.cpp7 template<typename T> struct X1 { }; struct in namespace:N1::Inner
11 template struct Inner::X1<int>; member in class:N1::Inner
16 template struct ::N1::Inner::X1<float>; member in class:N1::Inner
H A Dunused-variables.cpp7 struct X1 { }; struct
12 X1 x1; // expected-warning{{unused variable 'x1'}}
21 template void g<X0, X1>(); // expected-note{{in instantiation of}}
H A Dinstantiate-non-dependent-types.cpp3 struct X1 { struct
11 typedef instantiate<&X1<int>::member> i; // expected-note{{in instantiation of}}
H A Dtemp_class_order.cpp4 struct X1 { struct
9 struct X1<T*, U*> { struct
14 struct X1<T*, T*> { struct
19 struct X1<const T*, const T*> { struct
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];
/external/openfst/src/include/fst/
H A Dexpectation-weight.h41 // 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, X
[all...]
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp19.cpp28 struct X1 { struct
29 X1();
43 ::new X1<2> [17];
45 new X1<3> [17]; // expected-note 2{{instantiation}}
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/
H A Dp1.cpp11 struct X1 { struct
12 X1(int);
18 X1& get_X1() { return X0<X1>::value; }
/external/clang/test/CXX/except/except.spec/
H A Dp14-ir.cpp10 struct X1 { struct
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/
H A Dp16.cpp4 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
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp8.cpp31 struct X1 { struct
36 template struct X1<int>; // expected-note {{here}}
38 extern template struct X1<char>; // ok
40 template struct X1<char>; // expected-note {{here}}
/external/clang/test/CodeGenCXX/
H A Dtemplate-linkage.cpp31 struct X1 : X0<T> { struct in inherits:X0
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/
H A Dbind_internal_win.h39 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, X
[all...]
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
H A Dp9.cpp11 template<int N = N> struct X1 { }; struct
12 template<> struct X1<17> { static const bool value = true; }; struct
13 int array1[X1<>::value? 1 : -1];
/external/clang/test/CXX/expr/expr.post/expr.call/
H A Dp7-0x.cpp3 struct X1 { struct
4 X1();
14 void f(X1 x1, X2 x2) {

Completed in 298 milliseconds

1234567