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

1 23 4 5

  /external/clang/test/SemaTemplate/
injected-class-name.cpp 39 struct X1 {
40 void f0(const X1&); // expected-note{{here}}
41 void f0(X1&);
42 void f0(const X1<T, N>&); // expected-error{{redecl}}
instantiate-decl-init.cpp 26 struct X1 {
27 explicit X1(const X0 &x0 = X0());
32 X1 x1; local
instantiate-declref-ice.cpp 27 struct X1 {
32 const unsigned X1<T>::value = sizeof(T);
34 int array3[X1<int>::value == sizeof(int)? 1 : -1];
instantiate-member-pointers.cpp 7 struct X1 {
13 template struct X1<Y>;
14 template struct X1<int>; // expected-note{{instantiation}}
instantiate-non-type-template-parameter.cpp 48 struct X1 : X0<T> {
49 X1() {}
50 template<typename U> X1(const X1<U> &x) : X0<T>(x) { }
53 X1<int> x1i;
54 X1<float> x1f(x1i);
explicit-instantiation.cpp 41 struct X1 { };
42 typedef int X1::*MemPtr;
instantiate-anonymous-union.cpp 81 struct X1 : X0 {
88 template int X1::f<int>();
instantiate-template-template-parm.cpp 35 struct X1 { };
39 X1<TT> x1; // expected-error{{has different template parameters}} member in struct:X2
70 template<class T> struct X1
84 template<class T> template<class U> struct X1<T>::Inner
95 X1<double> simplex_;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 37 X1 DN D1.S8
48 VLD1 {X0,X1},[pSrc@128],step ;// Load 16 bytes from 16 byte aligned pSrc and pSrc=pSrc + step after loading
53 VST1 {X0,X1,X2,X3},[pDst@128]! ;// Store 32 bytes to 16 byte aligned pDst
57 VLD1 {X0,X1},[pSrc@128],step
62 VST1 {X0,X1,X2,X3},[pDst@128]!
66 VLD1 {X0,X1},[pSrc@128],step
71 VST1 {X0,X1,X2,X3},[pDst@128]!
75 VLD1 {X0,X1},[pSrc@128],step
80 VST1 {X0,X1,X2,X3},[pDst@128]!
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/namespace.memdef/
p3.cpp 46 struct X1 { };
52 union X1;
53 friend union X1;
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/
p8.cpp 105 struct X1 { };
113 struct X1 { };
  /external/clang/test/CXX/expr/expr.prim/expr.prim.general/
p3-0x.cpp 65 struct X1 {
75 auto X1::h() -> decltype(m) { return 0; } // expected-error{{'this' cannot be implicitly used in a static member function declaration}}
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p20.cpp 20 struct X1 {
21 X1();
30 new X1<1>; // expected-note{{instantiation}}
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
p1.cpp 71 struct X1 {
78 void X1<T>::template B<U>::f() { }
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p2.cpp 42 struct X1 {
  /external/clang/test/CodeGenCXX/
implicit-copy-constructor.cpp 63 template <class > struct X1 { X1( X1& , int = 0 ) { } };
64 struct X2 { X1<int> result; };
visibility-inlines-hidden.cpp 18 struct X1 {
28 inline void X1<T>::f3() { }
31 inline void X1<int>::f4() { }
37 extern template struct X1<float>;
39 void use(X0 *x0, X1<int> *x1, X2 *x2, X1<float> *x3) {
51 x1->f1();
53 x1->f2();
55 x1->f3()
    [all...]
vtt-layout.cpp 35 class X1 { int i; };
36 class C3 : public X1 { int i; };
54 class X1 { int i; };
55 class C3 : public X1 { int i; };
  /external/clang/test/SemaCXX/
conversion-delete-expr.cpp 71 struct X1 {
77 void f5(X1 x) { delete x; } // OK. In selecting a conversion to pointer function, template convesions are skipped.
default-constructor-initializers.cpp 3 struct X1 { // has no implicit default constructor
4 X1(int);
7 struct X2 : X1 { // expected-note 2 {{'X2' declared here}}
member-pointers-2.cpp 42 struct X1
48 void f(X1 p) {
overload-member-call.cpp 58 struct X1 {
63 struct X2 : X1 { };
user-defined-conversions.cpp 71 struct X1 {
72 X1(X1&); // expected-note{{candidate constructor not viable: no known conversion from 'X1' to 'X1 &' for 1st argument}}
76 operator X1();
79 int &f(X1);
83 int &ir = f(b); // expected-error{{no viable constructor copying parameter of type 'X1'}}
using-decl-1.cpp 31 struct X1 : X0 {
warn-bad-memaccess.cpp 19 struct X1 { virtual void f(); } x1; variable in typeref:struct:X1
23 memset(&x1, 0, sizeof x1); // \
30 memmove(&x1, 0, sizeof x1); // \
31 // expected-warning{{destination for this 'memmove' call is a pointer to dynamic class 'struct X1'; vtable pointer will be overwritten}} \
33 memmove(0, &x1, sizeof x1); // \
34 // expected-warning{{source of this 'memmove' call is a pointer to dynamic class 'struct X1'; vtable pointer will be moved}}
    [all...]

Completed in 295 milliseconds

1 23 4 5