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

1 2 3 4 5 6 7

  /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 20 class X1 { };
21 template<class X1 *xptr> struct Y2 { };
p9.cpp 20 class X1 {
  /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}} \
  /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];
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/class.access/class.friend/
p2-cxx03.cpp 14 class X1 { };
16 X0<X1> x0a;
17 X0<X1 *> x0b;
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 18 struct X1 {
  /external/clang/test/CXX/expr/expr.post/expr.call/
p7-0x.cpp 3 struct X1 {
4 X1();
25 void f(X1 x1, X2 x2, X3 x3, X4 x4) {
26 vararg(x1); // OK
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1-retmem.cpp 4 template<typename T> struct X1 { };
13 X1<value_type*> f2();
27 X1<typename X0<U>::value_type*> X0<U>::f2() {
  /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/SemaTemplate/
temp_explicit_cxx0x.cpp 7 template<typename T> struct X1 { };
11 template struct Inner::X1<int>;
16 template struct ::N1::Inner::X1<float>;
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}}
  /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 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/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/temp/temp.decls/temp.class/temp.static/
p1.cpp 13 struct X1 {
14 X1(int);
23 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/
attr-used.cpp 12 struct X1 {
  /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 621 milliseconds

1 2 3 4 5 6 7