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

1 2 3 4 5

  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
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/temp/temp.param/
p2.cpp 19 class X1 { };
20 template<class X1 *xptr> struct Y2 { };
p9.cpp 20 class X1 {
p15-cxx0x.cpp 5 X<X<int>> *x1; variable
20 X<X<int>> *x1; local
23 template<typename T = void> struct X1 { };
24 X1<X1<>> x1a;
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/class.qual/
p2.cpp 8 struct X1 {
9 X1<T>(int);
10 (X1<T>)(float);
11 X1 f2();
12 X1 f2(int);
13 X1 f2(float);
17 template<typename T> X1<T>::X1<T>(int) { } // expected-error{{out-of-line constructor for 'X1' cannot have template arguments}}
18 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/class/class.mem/
p14.cpp 11 struct X1 {
12 int X1;
13 X1(); // expected-error{{declarator requires an identifier}}
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/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 18 struct X1 {
  /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}}
libstdcxx_map_base_hack.cpp 18 struct X1 {
25 std::tr1::X1<int> x1i;
static-array-member.cpp 13 struct X1 {
18 T X1<T, N>::array[N];
  /external/clang/test/CXX/expr/expr.post/expr.call/
p7-0x.cpp 3 struct X1 {
4 X1();
14 void f(X1 x1, X2 x2) {
15 vararg(x1); // okay
  /external/clang/test/CXX/special/class.ctor/
p1.cpp 21 struct X1 {
24 X1<T>();
25 X1<T>(int);
26 (X1<T>)(float);
27 X1(float, float);
28 (X1)(double);
29 X1<T> (f0)(int);
30 X1<T> (f0)(type);
31 X1 (f1)(int);
32 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/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1-retmem.cpp 3 template<typename T> struct X1 { };
12 X1<value_type*> f2();
26 X1<typename X0<U>::value_type*> X0<U>::f2() {
  /external/clang/test/CXX/temp/temp.res/temp.local/
p1.cpp 17 template <int N1, const int& N2, const int* N3> struct X1 {
18 X1();
19 ~X1();
20 X1 f(const X1& x1a) { X1 x1b(x1a); return x1b; }
31 X1<42, i, &i> x1; (void)x1; local
  /external/clang/test/SemaTemplate/
instantiate-non-dependent-types.cpp 3 struct X1 {
11 typedef instantiate<&X1<int>::member> i; // expected-note{{in instantiation of}}
temp_explicit_cxx0x.cpp 7 template<typename T> struct X1 { };
11 template struct Inner::X1<int>;
16 template struct ::N1::Inner::X1<float>;
  /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...]
omxVCCOMM_Copy8x8_s.s 37 X1 RN 4
46 LDRD X1,[pSrc],Count
50 STRD X1,[pDst],#8
51 LDRD X1,[pSrc],Count
55 STRD X1,[pDst],#8
56 LDRD X1,[pSrc],Count
60 STRD X1,[pDst],#8
61 LDRD X1,[pSrc],Count
65 STRD X1,[pDst],#8
  /external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p9.cpp 11 template<int N = N> struct X1 { };
12 template<> struct X1<17> { static const bool value = true; };
13 int array1[X1<>::value? 1 : -1];
  /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/temp/temp.spec/temp.explicit/
p8.cpp 31 struct X1 {
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/
template-linkage.cpp 31 struct X1 : X0<T> {
35 template<typename T> void X1<T>::blarg() { }
38 extern template struct X1<char>;
40 // CHECK: define linkonce_odr void @_ZN2X1IcED1Ev(%struct.X1* %this) unnamed_addr
42 X1<char> i1c;
  /external/clang/test/Sema/
warn-unused-variables.c 28 int X1 = 4;
29 (void)(Y1 + X1); // expected-error {{use of undeclared identifier 'Y1'}}

Completed in 453 milliseconds

1 2 3 4 5