HomeSort by relevance Sort by last modified time
    Searched refs:X1 (Results 1 - 25 of 228) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p8-0x.cpp 3 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}}
p9-0x.cpp 7 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}}
  /external/clang/test/CXX/class/class.mem/
p14.cpp 11 struct X1 {
12 int X1; // expected-note{{hidden by a non-type declaration of 'X1' here}}
13 X1(); // expected-error{{must use 'struct' tag to refer to type 'X1' in this scope}} \
p13.cpp 15 struct X1 { // expected-note{{previous use is here}}
16 enum X1 { }; // expected-error{{use of 'X1' with tag type that does not match previous declaration}}
  /external/clang/test/CXX/temp/temp.res/temp.local/
p1.cpp 18 template <int N1, const int& N2, const int* N3> struct X1 {
19 X1();
20 ~X1();
21 X1 f(const X1& x1a) { X1 x1b(x1a); return x1b; }
32 X1<42, i, &i> x1; (void)x1; local
  /external/clang/test/SemaCXX/
type-formatting.cpp 4 struct X1 { };
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}}
accessible-base.cpp 7 struct X1 : virtual A
10 struct Y1 : X1, virtual A
13 struct Y2 : X1, A // expected-warning{{direct base 'A' is inaccessible due to ambiguity:\n struct Y2 -> struct X1 -> struct A\n struct Y2 -> struct A}}
  /external/clang/test/CXX/special/class.ctor/
p1.cpp 22 struct X1 {
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 (f1)(type)
    [all...]
  /external/clang/test/CXX/class.access/class.friend/
p2-cxx03.cpp 7 class X1 { };
9 X0<X1> x0a;
10 X0<X1 *> x0b;
  /external/openfst/src/include/fst/
expectation-weight.h 41 // 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, X2>::Member
    [all...]
  /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/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 {
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p16.cpp 4 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
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 37 X1 RN 4
47 LDRD X1,[pSrc],Count ;//pSrc after loading pSrc=pSrc+step
52 STRD X1,[pDst],#8
53 LDRD X1,[pSrc],Count
58 STRD X1,[pDst],#8
59 LDRD X1,[pSrc],Count
64 STRD X1,[pDst],#8
65 LDRD X1,[pSrc],Count
70 STRD X1,[pDst],#8
71 LDRD X1,[pSrc],Coun
    [all...]
  /external/clang/test/SemaTemplate/
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];
temp_explicit_cxx0x.cpp 7 template<typename T> struct X1 { };
11 template struct Inner::X1<int>;
16 template struct ::N1::Inner::X1<float>;
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}}
instantiate-non-type-template-parameter.cpp 49 struct X1 : X0<T> {
50 X1() {}
51 template<typename U> X1(const X1<U> &x) : X0<T>(x) { }
54 X1<int> x1i;
55 X1<float> x1f(x1i);
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/
p1.cpp 11 struct X1 {
12 X1(int);
18 X1& get_X1() { return X0<X1>::value; }
  /external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p9.cpp 12 template<int N = N> struct X1 { };
13 template<> struct X1<17> { static const bool value = true; };
14 int array1[X1<>::value? 1 : -1];
  /external/clang/test/CodeGenCXX/
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/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/
p2.cpp 9 struct X1 {
10 X1<T>(int);
11 (X1<T>)(float);
12 X1 f2();
13 X1 f2(int);
14 X1 f2(float);
18 template<typename T> X1<T>::X1<T>(int) { } // expected-error{{out-of-line constructor for 'X1' cannot have template arguments}}
19 template<typename T> (X1<T>::X1<T>)(float) { } // expected-error{{out-of-line constructor for 'X1' cannot have template arg (…)
    [all...]
  /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/temp/temp.decls/temp.variadic/
partial-ordering.cpp 8 struct X1 {
13 struct X1<tuple<Head, Tail...> > {
18 struct X1<tuple<Head, Tail&...> > {
23 struct X1<tuple<Head&, Tail&...> > {
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];

Completed in 877 milliseconds

1 2 3 4 5 6 7 8 910