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

1 2 3

  /external/clang/test/CXX/class/class.mem/
p13.cpp 24 struct X3 {
26 X3 // expected-error{{member 'X3' has the same name as its class}}
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_QuantInvInter_I_s.s 73 X3 RN 14
99 SMULTB X3,tempVal21,two ;// X3= second val(top 16 bits of tampVal21)*2
102 CMP X3,#0
104 RSBLT X3,X3,#0
105 SMLABBNE X3,QP,X3,QP1
107 RSBLT X3,X3,#
    [all...]
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 21 struct X3 {
22 X3();
25 X3(X3&); // expected-note{{candidate constructor not viable: no known conversion from 'X3' to 'X3 &' for 1st argument}}
51 void g3(const X3&);
58 g3(X3()); // expected-warning{{no viable constructor copying parameter of type 'X3'}}
76 float &fp2 = g<X3>(); // Not ambiguous
    [all...]
p5-cxx0x-no-extra-copy.cpp 20 struct X3 {
21 X3();
24 X3(X3&);
42 void g3(const X3&);
48 g3(X3());
58 int &g(int_c<sizeof(f(T()))> * = 0); // expected-note{{candidate function [with T = X3]}}
60 template<typename T> float &g(); // expected-note{{candidate function [with T = X3]}}
63 float &fp = g<X3>(); // expected-error{{call to 'g' is ambiguous}}
  /external/clang/test/CXX/except/except.spec/
p14-ir.cpp 18 struct X3 : X0, X1 {
19 X3();
28 void test(X2 x2, X3 x3, X5 x5) {
34 // CHECK: define linkonce_odr void @_ZN2X3C1ERKS_(%struct.X3* %this, %struct.X3*) unnamed_addr
38 X3 x3a(x3);
  /external/chromium/base/
bind_internal_win.h 77 template <typename R, typename X1, typename X2, typename X3>
78 struct FunctionTraits<R(__stdcall *)(X1, X2, X3)> {
79 typedef R (*NormalizedSig)(X1, X2, X3);
84 typedef X3 B3;
88 template <typename R, typename X1, typename X2, typename X3>
89 struct FunctionTraits<R(__fastcall *)(X1, X2, X3)> {
90 typedef R (*NormalizedSig)(X1, X2, X3);
95 typedef X3 B3;
99 template <typename R, typename X1, typename X2, typename X3, typename X4>
100 struct FunctionTraits<R(__stdcall *)(X1, X2, X3, X4)>
    [all...]
bind_internal.h 174 template <typename R, typename X1, typename X2, typename X3>
175 struct FunctionTraits<R(*)(X1, X2, X3)> {
176 typedef R (*NormalizedSig)(X1, X2, X3);
181 typedef X3 B3;
186 template <typename R, typename T, typename X1, typename X2, typename X3>
187 struct FunctionTraits<R(T::*)(X1, X2, X3)> {
188 typedef R (T::*NormalizedSig)(X1, X2, X3);
195 typedef X3 B4;
200 template <typename R, typename T, typename X1, typename X2, typename X3>
201 struct FunctionTraits<R(T::*)(X1, X2, X3) const>
    [all...]
  /external/clang/test/Preprocessor/
macro_fn_comma_swallow.c 15 #define X3(b, ...) {b, ## __VA_ARGS__}
16 3: X3(foo)
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p3-0x.cpp 49 struct X3;
52 template void has_inline_namespaces::f(X3&);
55 template struct has_inline_namespaces::X0<X3>;
62 struct has_inline_namespaces::X0<X4>::MemberClassTemplate<X3>;
65 void has_inline_namespaces::X0<X4>::mem_func_template(X3&);
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1.cpp 14 template <int& N> struct X3 { X3(); };
15 template <int& N> X3<N>::X3() { }
34 template <int (&fp)(int)> struct X3 { }; // expected-note 4{{here}}
68 X3<f> x3a;
69 X3<&f> x3a_addr; // expected-error {{address taken}}
70 X3<f_tmpl> x3b;
71 X3<&f_tmpl> x3b_addr; // expected-error {{address taken}}
72 X3<f_tmpl<int> > x3c
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 39 X3 DN D3.S8
49 VLD1 {X2,X3},[pSrc@128],step
53 VST1 {X0,X1,X2,X3},[pDst@128]! ;// Store 32 bytes to 16 byte aligned pDst
58 VLD1 {X2,X3},[pSrc@128],step
62 VST1 {X0,X1,X2,X3},[pDst@128]!
67 VLD1 {X2,X3},[pSrc@128],step
71 VST1 {X0,X1,X2,X3},[pDst@128]!
76 VLD1 {X2,X3},[pSrc@128],step
80 VST1 {X0,X1,X2,X3},[pDst@128]!
omxVCCOMM_Copy8x8_s.s 40 X3 DN D3.S8
48 VLD1 {X3},[pSrc],step
51 VST1 {X2,X3},[pDst]!
56 VLD1 {X3},[pSrc],step
59 VST1 {X2,X3},[pDst]!
  /external/clang/test/CXX/temp/temp.param/
p9-0x.cpp 16 struct X3 {
18 friend void f0(X3);
21 friend void f1(X3) {
45 template<typename T> struct X3;
50 template<typename T = int> struct Inner::X3 { };
  /external/clang/test/CodeGenCXX/
override-layout.cpp 32 // CHECK: Type: struct X3
33 struct PACKED X3 : virtual public X1, public X0 {
61 X3 x3s[sizeof(X3)];
  /external/clang/test/SemaTemplate/
copy-ctor-assign.cpp 47 struct X3 : X2<int> {
50 void test_X2(X3 &to, X3 from) {
instantiate-member-pointers.cpp 29 struct X3 {
30 X3<T, Class, Ptr> &operator=(const T& value) {
35 X3<int, Y, &Y::x> x3; variable
41 X3<int, Y, Member> member;
instantiate-static-var.cpp 78 struct X3 {};
84 void Foo(X3<1>);
93 Y3().Foo(X3<SizeOf<char>::value>());
temp_explicit.cpp 50 template<typename T> struct X3 {
56 void f1(X3<int&>); // okay, Inner, not instantiated
58 template struct X3<int&>; // expected-note{{instantiation}}
constructor-template.cpp 67 struct X3 {
68 template<typename T> X3(T);
71 template<> X3::X3(X3); // expected-error{{must pass its first argument by reference}}
  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 11 struct X3 : public X2 { // expected-error {{implicit default constructor for 'X3' must explicitly initialize the base class 'X2' which does not have a default constructor}}
13 X3 x3; // expected-note {{first required here}} variable
  /external/clang/test/ASTMerge/Inputs/
class-template1.cpp 11 struct X3;
class-template2.cpp 11 struct X3;
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
p2.cpp 40 struct X3 {
47 int check_X3[X<X3, void, void>::value == 3? 1 : -1];
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p20.cpp 53 struct X3 {
54 X3();
66 new (0, 0) X3; // expected-note{{instantiation}}
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
typelist.h 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) >
373 #define _GLIBCXX_TYPELIST_CHAIN8(X0, X1, X2, X3, X4, X5, X6, X7) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN7(X1, X2, X3, X4, X5, X6, X7)
    [all...]

Completed in 409 milliseconds

1 2 3