/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p2-0x.cpp | 302 struct X2; 309 template<> void f<X2>(X2&); 313 template<> struct X0<X2>::MemberClass { }; 315 template<> void X0<X2>::mem_func(); 317 template<> template<typename T> struct X0<X2>::MemberClassTemplate { }; 319 template<> template<typename T> void X0<X2>::mem_func_template(T&) { } 321 template<> int X0<X2>::value = 12;
|
/external/clang/test/CodeGenCXX/ |
implicit-copy-constructor.cpp | 63 struct X2 { X1<int> result; }; 66 typedef X2 impl;
|
visibility-inlines-hidden.cpp | 33 struct __attribute__((visibility("default"))) X2 { 39 void use(X0 *x0, X1<int> *x1, X2 *x2, X1<float> *x3) { 63 x2->f2();
|
/external/clang/test/SemaCXX/ |
default-assignment-operator.cpp | 115 struct X2 : X0, X1 { }; 117 void f(X2 x2) { x2 = x2; }
|
user-defined-conversions.cpp | 75 struct X2 { 82 void g(X2 b) {
|
overload-member-call.cpp | 63 struct X2 : X1 { }; 65 void test_X2(X2 *x2p, const X2 *cx2p) {
|
abstract.cpp | 202 struct X2 { 204 void g(X2 parm10); // expected-error {{parameter type 'X2<N>' is an abstract class}} 205 void g(X2 parm11[2]); // expected-error {{array of abstract class type 'X2<N>'}}
|
static-cast.cpp | 169 struct X2 { 172 struct X3 : X2 { 179 (void)static_cast<X3_typedef*>(x2); 182 const X2 *x2; member in struct:X4
|
cxx0x-initializer-constructor.cpp | 41 struct X2 { explicit X2(int); }; // expected-note {{constructor declared here}} 95 { X2 x{0}; } 96 { X2 x = {0}; } // expected-error {{constructor is explicit}}
|
/external/chromium_org/base/ |
bind_internal.h | 1246 typename Bound2UnwrapTraits::ForwardType x2 = local 1341 typename Bound2UnwrapTraits::ForwardType x2 = local 1373 typename Bound2UnwrapTraits::ForwardType x2 = local 1481 typename Bound2UnwrapTraits::ForwardType x2 = local 1517 typename Bound2UnwrapTraits::ForwardType x2 = local 1554 typename Bound2UnwrapTraits::ForwardType x2 = local 1674 typename Bound2UnwrapTraits::ForwardType x2 = local 1713 typename Bound2UnwrapTraits::ForwardType x2 = local 1753 typename Bound2UnwrapTraits::ForwardType x2 = local 1794 typename Bound2UnwrapTraits::ForwardType x2 = local 1927 typename Bound2UnwrapTraits::ForwardType x2 = local 1970 typename Bound2UnwrapTraits::ForwardType x2 = local 2014 typename Bound2UnwrapTraits::ForwardType x2 = local 2059 typename Bound2UnwrapTraits::ForwardType x2 = local 2105 typename Bound2UnwrapTraits::ForwardType x2 = local 2250 typename Bound2UnwrapTraits::ForwardType x2 = local 2296 typename Bound2UnwrapTraits::ForwardType x2 = local 2343 typename Bound2UnwrapTraits::ForwardType x2 = local 2391 typename Bound2UnwrapTraits::ForwardType x2 = local 2440 typename Bound2UnwrapTraits::ForwardType x2 = local 2490 typename Bound2UnwrapTraits::ForwardType x2 = local [all...] |
/external/clang/test/CodeGen/ |
override-layout.c | 32 // CHECK: Type: struct X2 33 struct PACKED X2 { 38 void use_X2() { struct X2 x2; x2.y = sizeof(struct X2); }; local
|
/external/clang/test/SemaTemplate/ |
member-access-expr.cpp | 49 struct X2 { 58 void test_convert(X2 x2) { 59 convert<int>(x2); 60 convert<long>(x2); // expected-note{{instantiation}} 75 void test_destruct(X2 *x2p, int *ip) {
|
nested-template.cpp | 114 struct X2 { 124 X2<int>::Inner<X2_arg> x2i1; 125 X2<float> x2a; // expected-note{{instantiation}} 126 X2<long>::Inner<X2_arg> x2i3; // expected-error{{template template argument has different}}
|
current-instantiation.cpp | 105 struct X2 { 126 void g4(typename X2::my_T_type&); // expected-error{{redecl}} 130 void g5(typename X0::X2::my_T_type&); // expected-error{{redecl}} 134 void g6(typename X0<T*, U*>::X2::my_T_type&); // expected-error{{redecl}} 138 void g7(typename ::X0<typename X2::my_T_type*, U_type*>::X2::my_T_type&); // expected-error{{redecl}} 142 void g8(typename ::X0<typename X0<T_type*, U*>::X2::my_T_type*, U_type*>::X2::my_T_type&); // expected-error{{redecl}}
|
instantiate-member-template.cpp | 109 struct X2 { 117 X2<int&> x2a; // expected-note{{instantiation}} 118 X2<float> x2b; // expected-note{{instantiation}} 163 template<typename> class X2; 172 typedef X2<TT<typename X1<T>::type> > Type; 185 typedef X2<TT<typename X1<T>::type> > Type;
|
instantiate-function-1.cpp | 16 struct X2 { 26 template struct X2<int>; 27 template struct X2<int&>; // expected-note{{instantiation of}}
|
instantiate-complete.cpp | 60 struct X2 : public T { }; 62 void refbind_base(X2<X1<int> > &x2) { 63 X1<int> &x1 = x2;
|
instantiate-expr-1.cpp | 157 struct X2 { 165 typedef X2<7> X;
|
instantiate-function-params.cpp | 60 struct X2; 63 typename = int( X2<TokenT> &)>
|
member-function-template.cpp | 70 template<typename T> struct X2; // expected-note{{here}} 72 void test_incomplete_access(X1<int> *x1, X2<int> *x2) { 74 (void)x2->get<float>(); // expected-error{{implicit instantiation of undefined template}}
|
canonical-expr-type.cpp | 41 struct X2 {
|
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/ |
p1.cpp | 82 class X2 { 91 void X2<T>::Bar<F>::Func() {}
|
/external/clang/test/CXX/temp/temp.param/ |
p15-cxx0x.cpp | 10 X<X<X<X<X<int>>>>> *x2; variable 63 template<place...X1, place...X2> 64 struct append_places<places<X1...>, places<X2...>> { 65 typedef places<X1...,X2...> type;
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
rate_control.h | 57 float X2;
|
/external/chromium_org/third_party/boringssl/src/crypto/md4/ |
md4.c | 125 uint32_t X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X12, X13, X14, X15; 140 X2 = l; 144 R0(C, D, A, B, X2, 11, 0); 191 R1(A, B, C, D, X2, 3, 0x5A827999L); 204 R2(A, B, C, D, X2, 3, 0x6ED9EBA1L);
|