HomeSort by relevance Sort by last modified time
    Searched defs:X1 (Results 26 - 50 of 123) sorted by null

12 3 4 5

  /external/clang/test/SemaTemplate/
extern-templates.cpp 42 class X1 {
50 void X1<T>::g(T t) {
54 extern template class X1<void*>;
56 void g_X1(X1<void*> x1, void *ptr) {
57 x1.g(ptr);
60 extern template void X1<const void*>::g(const void*);
62 void g_X1_2(X1<const void *> x1, const void *ptr) {
63 x1.g(ptr)
    [all...]
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];
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}}
copy-ctor-assign.cpp 38 struct X1 {
39 X1 &operator=(const X1&);
43 struct X2 : X1 {
dependent-type-identity.cpp 27 struct X1 {
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy8x8_s.s 38 X1 DN D1.S8
46 VLD1 {X1},[pSrc],step
50 VST1 {X0,X1},[pDst]! ;// Store 16 bytes to 8 byte aligned pDst
54 VLD1 {X1},[pSrc],step
58 VST1 {X0,X1},[pDst]!
  /external/clang/test/CXX/class.access/class.friend/
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/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 9 struct X1 {
10 X1();
11 explicit X1(const X1&);
49 void g1(const X1&);
56 g1(X1());
p5-cxx0x-no-extra-copy.cpp 8 struct X1 {
9 X1();
10 explicit X1(const X1&);
40 void g1(const X1&);
46 g1(X1());
  /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 {
p14.cpp 10 struct X1 {
11 virtual ~X1() throw(B); // expected-note{{overridden virtual function is here}}
13 struct X2 : public X0, public X1 { }; // expected-error 2{{exception specification of overriding function is more lax than base version}}
  /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/temp/temp.arg/temp.arg.template/
p3-0x.cpp 31 struct X1 { };
37 X1<int, X1a> inst_x1a;
38 X1<long, X1b> inst_x1b;
39 X1<short, X1c> inst_x1c;
40 X1<short, X1d> inst_x1d; // expected-error{{template template argument has different template parameters than its corresponding template template paramete}}
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
p2.cpp 34 struct X1 { };
45 int check_X1[X<X1, void, void>::value == 1? 1 : -1];
  /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}}
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
injected-class-name.cpp 62 template<typename F> struct X1;
65 struct X1<R(ArgTypes...)> {
70 unsigned_c<sizeof(1 + g(ArgTypes()...))> X1<R(ArgTypes...)>::f() {
74 X1<int(float, double)> xif2;
partial-ordering.cpp 7 struct X1 {
12 struct X1<tuple<Head, Tail...> > {
17 struct X1<tuple<Head, Tail&...> > {
22 struct X1<tuple<Head&, Tail&...> > {
26 int check0[X1<tuple<>>::value == 0? 1 : -1];
27 int check1[X1<tuple<int>>::value == 2? 1 : -1];
28 int check2[X1<tuple<int, int>>::value == 1? 1 : -1];
29 int check3[X1<tuple<int, int&>>::value == 2? 1 : -1];
30 int check4[X1<tuple<int&, int&>>::value == 3? 1 : -1];
  /external/clang/test/CXX/temp/temp.param/
p3.cpp 10 template<template<class T> class Y> struct X1 {
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p1.cpp 27 struct X1 {
40 template struct X1<int>::Inner<float>;
41 template struct X1<int>::Inner<double>;
42 template struct X1<int>::Inner<void>; // expected-note{{instantiation}}
44 template void X1<int>::f(int&, float);
45 template void X1<int>::f<long>(int&, long);
46 template void X1<int>::f<>(int&, double);
47 template void X1<int>::f<>(int&, int*); // expected-note{{instantiation}}
p2.cpp 34 struct X1 { // expected-note{{explicit instantiation refers here}}
42 template struct X1<int>; // expected-warning{{must occur in}}
p3-0x.cpp 30 struct X1 {};
33 template void f(X1&);
36 template struct X0<X1>;
42 template struct X0<X2>::MemberClassTemplate<X1>;
44 template void X0<X2>::mem_func_template(X1&);
  /external/clang/test/CodeGenCXX/
global-llvm-constant.cpp 22 struct X1 {
27 X1 array[3];
key-function-vtable.cpp 37 struct X1 : X0 {
41 inline void X1::f() { }
43 void use_X1(X1 *x1) { x1->f(); }
static-init-3.cpp 7 struct X1
21 template<class T> T & X1<T>::instance = X1<T>::get();
27 X2< B > bg = X1< X2< B > >::get();
28 X2< A > ag = X1< X2< A > >::get();
  /external/clang/test/SemaCXX/
converting-constructor.cpp 43 struct X1 { X1(const char&); };
44 void x1(X1);
46 x1(1);

Completed in 247 milliseconds

12 3 4 5