Searched defs:X1 (Results 1 - 25 of 145) sorted by relevance

123456

/external/clang/test/CXX/temp/temp.decls/temp.class.spec/
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/temp/temp.param/
H A Dp2.cpp20 class X1 { }; class
21 template<class X1 *xptr> struct Y2 { };
H A Dp9.cpp20 class X1 { class
/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/dcl.decl/dcl.meaning/dcl.fct/
H A Dp13.cpp18 struct X1 { struct
/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 Dlibstdcxx_map_base_hack.cpp18 struct X1 { struct in namespace:std::tr1
25 std::tr1::X1<int> x1i;
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;
/external/clang/test/SemaTemplate/
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_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 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];
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}}
/external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
H A Dp9.cpp12 template<int N = N> struct X1 { }; struct
13 template<> struct X1<17> { static const bool value = true; }; struct
14 int array1[X1<>::value? 1 : -1];
/external/clang/test/CXX/special/class.ctor/
H A Dp1.cpp22 struct X1 { struct
25 X1<T>();
26 X1<T>(int);
27 (X1<T>)(float);
28 X1(float, float);
29 (X1)(double);
30 X1<T> (f0)(int);
31 X1<T> (f0)(type);
32 X1 (f1)(int);
33 X1 (f
40 template<typename T> X1<T>::X1() { } function in class:X1
41 template<typename T> (X1<T>::X1)(double) { } function
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1-retmem.cpp4 template<typename T> struct X1 { }; struct
13 X1<value_type*> f2();
27 X1<typename X0<U>::value_type*> X0<U>::f2() {
/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/temp/temp.res/temp.local/
H A Dp1.cpp18 template <int N1, const int& N2, const int* N3> struct X1 { struct
19 X1();
20 ~X1();
21 X1 f(const X1& x1a) { X1 x1b(x1a); return x1b; }
32 X1<42, i, &i> x1; (void)x1;
/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 Dattr-used.cpp12 struct X1 { struct
/external/clang/test/Sema/
H A Dwarn-unused-variables.c28 int X1 = 4; local
29 (void)(Y1 + X1); // expected-error {{use of undeclared identifier 'Y1'}}
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-cxx03-extra-copy.cpp9 struct X1 { struct
10 X1();
11 explicit X1(const X1&);
49 void g1(const X1&);
56 g1(X1());
H A Dp5-cxx0x-no-extra-copy.cpp8 struct X1 { struct
9 X1();
10 explicit X1(const X1&);
40 void g1(const X1&);
46 g1(X1());
/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 {

Completed in 1391 milliseconds

123456