Searched refs:X1 (Results 26 - 50 of 233) sorted by relevance

12345678910

/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp4.cpp4 struct X1 { struct
9 X1<int> x1a;
10 X1<float> x1b; // expected-note {{in instantiation of}}
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dpartial-ordering.cpp8 struct X1 { struct
13 struct X1<tuple<Head, Tail...> > { struct
18 struct X1<tuple<Head, Tail&...> > { struct
23 struct X1<tuple<Head&, Tail&...> > { struct
27 int check0[X1<tuple<>>::value == 0? 1 : -1];
28 int check1[X1<tuple<int>>::value == 2? 1 : -1];
29 int check2[X1<tuple<int, int>>::value == 1? 1 : -1];
30 int check3[X1<tuple<int, int&>>::value == 2? 1 : -1];
31 int check4[X1<tuple<int&, int&>>::value == 3? 1 : -1];
/external/clang/test/CodeGenCXX/
H A Dtemplate-linkage.cpp34 struct X1 : X0<T> { struct in inherits:X0
38 template<typename T> void X1<T>::blarg() { }
41 extern template struct X1<char>;
43 // CHECK-LABEL: define linkonce_odr void @_ZN2X1IcED1Ev(%struct.X1* %this) unnamed_addr
45 X1<char> i1c;
H A Dglobal-llvm-constant.cpp22 struct X1 { struct
27 X1 array[3];
H A Doverride-layout.cpp20 // CHECK: Type: struct X1
21 struct X1 : public X0, public Empty2 { struct in inherits:X0,Empty2
27 struct PACKED X2 : public X1, public X0, public Empty1 {
33 struct PACKED X3 : virtual public X1, public X0 {
69 X1 x1s[sizeof(X1)];
H A Dkey-function-vtable.cpp38 struct X1 : X0 { struct in inherits:X0
42 inline void X1::f() { }
44 void use_X1() { X1 x1; }
H A Dattr-used.cpp12 struct X1 { struct
/external/clang/test/SemaTemplate/
H A Dmember-template-access-expr.cpp53 struct X1 { struct
61 void test_X1(X1 x1) {
67 float* (X1::*mf1)(int) = &X1::f1;
68 float* (X1::*mf2)(int) = &X1::f1<>;
69 float* (X1::*mf3)(float) = &X1::f1<float>;
71 float* (*fp3)(int) = &X1::f2;
72 float* (*fp4)(int) = &X1
137 struct X1 { struct in namespace:rdar8198511
[all...]
H A Dinstantiate-decl-init.cpp27 struct X1 { struct
28 explicit X1(const X0 &x0 = X0());
33 X1 x1;
H A Dinstantiate-declref-ice.cpp28 struct X1 { struct
33 const unsigned X1<T>::value = sizeof(T);
35 int array3[X1<int>::value == sizeof(int)? 1 : -1];
H A Dcopy-ctor-assign.cpp38 struct X1 { struct
39 X1 &operator=(const X1&);
43 struct X2 : X1 {
H A Dinjected-class-name.cpp39 struct X1 { struct
40 void f0(const X1&); // expected-note{{here}}
41 void f0(X1&);
42 void f0(const X1<T, N>&); // expected-error{{redecl}}
/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/temp/temp.spec/temp.explicit/
H A Dp1.cpp29 struct X1 { struct
42 template struct X1<int>::Inner<float>;
43 template struct X1<int>::Inner<double>;
44 template struct X1<int>::Inner<void>; // expected-note{{instantiation}}
46 template void X1<int>::f(int&, float);
47 template void X1<int>::f<long>(int&, long);
48 template void X1<int>::f<>(int&, double);
49 template void X1<int>::f<>(int&, int*); // expected-note{{instantiation}}
H A Dp3-0x.cpp31 struct X1 {}; struct in namespace:has_inline_namespaces
34 template void f(X1&);
37 template struct X0<X1>;
43 template struct X0<X2>::MemberClassTemplate<X1>;
45 template void X0<X2>::mem_func_template(X1&);
/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/SemaCXX/
H A Dlibstdcxx_map_base_hack.cpp18 struct X1 { struct in namespace:std::tr1
25 std::tr1::X1<int> x1i;
H A Dconverting-constructor.cpp50 struct X1 { X1(const char&); }; struct
51 void x1(X1);
H A Ddefault-constructor-initializers.cpp3 struct X1 { // has no implicit default constructor struct
4 X1(int);
7 struct X2 : X1 { // expected-note 2 {{'X2' declared here}}
/external/ply/ply/example/BASIC/
H A Dlinear.bas2 2 REM ::: A1*X1 + A2*X2 = B1
3 3 REM ::: A3*X1 + A4*X2 = B2
9 37 LET X1 = (B1*A4 - B2*A2) / D
11 55 PRINT X1, X2
/external/clang/test/CXX/expr/expr.post/expr.call/
H A Dp7-0x.cpp3 struct X1 { struct
4 X1();
25 void f(X1 x1, X2 x2, X3 x3, X4 x4) {
/external/clang/test/CXX/class.access/class.friend/
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/llvm/test/MC/AsmParser/
H A Duppercase-hex.s4 .short 0X1
/external/clang/test/CXX/class/class.mem/
H A Dp13.cpp17 struct X1 { struct
18 enum X1 { }; // expected-error{{member 'X1' has the same name as its class}} enum in struct:X1

Completed in 484 milliseconds

12345678910