HomeSort by relevance Sort by last modified time
    Searched refs:X2 (Results 26 - 50 of 105) sorted by null

12 3 4 5

  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy8x8_s.s 39 X2 DN D2.S8
47 VLD1 {X2},[pSrc],step
51 VST1 {X2,X3},[pDst]!
55 VLD1 {X2},[pSrc],step
59 VST1 {X2,X3},[pDst]!
  /external/clang/test/SemaTemplate/
copy-ctor-assign.cpp 43 struct X2 : X1 {
44 template<typename U> X2 &operator=(const U&);
47 struct X3 : X2<int> {
default-arguments.cpp 5 X<int> *x2; variable
49 struct X2 {
70 X2<int> x2i;
71 X2<int>::Inner1<float> x2iif;
73 X2<int>::Inner1<> x2bad; // expected-note{{instantiation of default argument}}
75 X2<int>::NonType1<'a'> x2_nontype1;
76 X2<int>::NonType1<> x2_nontype1_bad; // expected-note{{instantiation of default argument}}
79 X2<int>::Inner3<float>::VeryInner<> vi;
80 X2<char>::Inner3<int>::NonType2<> x2_deep_nontype;
89 X2<int>::Inner3<float>::VeryInner<int, float> >::value? 1 : -1]
    [all...]
constructor-template.cpp 54 struct X2 {
55 X2(); // expected-note{{candidate constructor}}
56 X2(X2&); // expected-note {{candidate constructor}}
57 template<typename T> X2(T);
60 X2 test(bool Cond, X2 x2) {
62 return x2; // okay, uses copy constructor
64 return X2(); // expected-error{{no matching constructor}
    [all...]
instantiate-member-pointers.cpp 17 struct X2 {
24 template struct X2<int, Y>;
25 template struct X2<int&, Y>; // expected-note{{instantiation}}
26 template struct X2<const void, Y>; // expected-note{{instantiation}}
instantiate-static-var.cpp 52 struct X2 {
53 virtual ~X2();
72 Z1<Y2<X2>::value> x2; local
73 int y2[Y2<X2>::value];
friend-template.cpp 154 template<typename , typename T> struct X2
162 template <typename T1, typename T2, typename B> friend void op(X2<T1, T2>& , B);
164 template <typename Ch, typename Tr, typename B> void op(X2<Ch, Tr>& , B)
166 X2<int, Tr> s;
171 X2<int, X0<int> > ngs;
186 template<typename , typename T> struct X2
194 template <typename T1, typename T2, typename B> friend void op(X2<T1, T2>& , B);
196 template <typename Ch, typename Tr, typename B> void op(X2<Ch, Tr>& , B)
198 X2<int, Tr> s;
203 X2<int, X0<int> > ngs
    [all...]
explicit-instantiation.cpp 46 struct X2 {
56 template int X2::f0(int); // expected-error{{not an instantiation}}
58 template int *X2::f1(int *); // okay
60 template void X2::f2(int *, int *); // expected-error{{ambiguous}}
instantiate-template-template-parm.cpp 38 struct X2 {
45 X2<int, X3i> x2okay;
46 X2<long, X3l> x2bad; // expected-note{{instantiation}}
  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p16.cpp 5 template<class X2> void g2(T, X2);
23 void A<int>::g2<char>(int, char); // X2 specified as char
  /external/chromium/base/
bind_internal.h 137 template <typename R, typename X1, typename X2>
138 struct FunctionTraits<R(*)(X1, X2)> {
139 typedef R (*NormalizedSig)(X1, X2);
143 typedef X2 B2;
148 template <typename R, typename T, typename X1, typename X2>
149 struct FunctionTraits<R(T::*)(X1, X2)> {
150 typedef R (T::*NormalizedSig)(X1, X2);
156 typedef X2 B3;
161 template <typename R, typename T, typename X1, typename X2>
162 struct FunctionTraits<R(T::*)(X1, X2) const>
    [all...]
  /external/clang/test/ASTMerge/Inputs/
class-template1.cpp 8 struct X2;
class-template2.cpp 8 struct X2;
  /external/clang/test/CXX/temp/temp.param/
p9-0x.cpp 14 struct X2;
36 struct X2 {
41 template<typename T = int> void X2<T>::f0() { } // expected-error{{cannot add a default template argument to the definition of a member of a class template}}
42 template<typename T> template<typename U = int> void X2<T>::f1() { } // expected-error{{cannot add a default template argument to the definition of a member of a class template}}
p3.cpp 21 template<class T, T i> struct X2 {
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
p2.cpp 36 struct X2 {
46 int check_X2[X<X2, void, void>::value == 2? 1 : -1];
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 38 struct X2 {
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p20.cpp 35 struct X2 {
36 X2();
49 new (0, 0) X2<1>; // expected-note{{instantiation}}
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
typelist.h 368 #define _GLIBCXX_TYPELIST_CHAIN3(X0, X1, X2) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN2(X1, X2) >
369 #define _GLIBCXX_TYPELIST_CHAIN4(X0, X1, X2, X3) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN3(X1, X2, X3) >
370 #define _GLIBCXX_TYPELIST_CHAIN5(X0, X1, X2, X3, X4) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN4(X1, X2, X3, X4) >
371 #define _GLIBCXX_TYPELIST_CHAIN6(X0, X1, X2, X3, X4, X5) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN5(X1, X2, X3, X4, X5) >
372 #define _GLIBCXX_TYPELIST_CHAIN7(X0, X1, X2, X3, X4, X5, X6) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN6(X1, X2, X3, X4, X5, X6)
    [all...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/ext/
typelist.h 368 #define _GLIBCXX_TYPELIST_CHAIN3(X0, X1, X2) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN2(X1, X2) >
369 #define _GLIBCXX_TYPELIST_CHAIN4(X0, X1, X2, X3) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN3(X1, X2, X3) >
370 #define _GLIBCXX_TYPELIST_CHAIN5(X0, X1, X2, X3, X4) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN4(X1, X2, X3, X4) >
371 #define _GLIBCXX_TYPELIST_CHAIN6(X0, X1, X2, X3, X4, X5) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN5(X1, X2, X3, X4, X5) >
372 #define _GLIBCXX_TYPELIST_CHAIN7(X0, X1, X2, X3, X4, X5, X6) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN6(X1, X2, X3, X4, X5, X6)
    [all...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/ext/
typelist.h 368 #define _GLIBCXX_TYPELIST_CHAIN3(X0, X1, X2) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN2(X1, X2) >
369 #define _GLIBCXX_TYPELIST_CHAIN4(X0, X1, X2, X3) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN3(X1, X2, X3) >
370 #define _GLIBCXX_TYPELIST_CHAIN5(X0, X1, X2, X3, X4) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN4(X1, X2, X3, X4) >
371 #define _GLIBCXX_TYPELIST_CHAIN6(X0, X1, X2, X3, X4, X5) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN5(X1, X2, X3, X4, X5) >
372 #define _GLIBCXX_TYPELIST_CHAIN7(X0, X1, X2, X3, X4, X5, X6) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN6(X1, X2, X3, X4, X5, X6)
    [all...]
  /external/chromium/testing/
gmock_mutant.h 21 // the function signature hence the X1, X2 ... XN parameters in CreateFunctor.
    [all...]
  /external/clang/test/CodeGenCXX/
value-init.cpp 161 struct X2 : X0 {
162 int x2; member in struct:zeroinit::X2
167 struct X3 : X2<int> {
168 X3() : X2<int>() { }
  /external/clang/test/SemaCXX/
overload-member-call.cpp 63 struct X2 : X1 { };
65 void test_X2(X2 *x2p, const X2 *cx2p) {
generalized-initializers.cpp 58 struct X2 { explicit X2(int); };
101 { X2 x{0}; }
102 { X2 x = {0}; } // expected-error {{explicit}}

Completed in 594 milliseconds

12 3 4 5