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

1 2

  /external/clang/test/CXX/expr/expr.post/expr.call/
p7-0x.cpp 16 struct X4 {
17 X4(const X4&) = default;
18 X4(X4&);
23 void f(X1 x1, X2 x2, X3 x3, X4 x4) {
27 vararg(x4); // expected-error{{cannot pass object of non-trivial type 'X4' through variadic function; call will abort at runtime}}
  /external/clang/test/CXX/class/class.mem/
p13.cpp 31 struct X4 {
36 unsigned X4; // expected-error{{member 'X4' has the same name as its class}}
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p3-0x.cpp 51 struct X4;
54 template void has_inline_namespaces::f<X4>(X4&);
58 template struct has_inline_namespaces::X0<X4>::MemberClass;
60 template void has_inline_namespaces::X0<X4>::mem_func();
63 struct has_inline_namespaces::X0<X4>::MemberClassTemplate<X3>;
66 void has_inline_namespaces::X0<X4>::mem_func_template(X3&);
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 38 struct X4 {
39 X4();
40 X4(const X4&, T = get_value_badly<T>()); // expected-note{{in instantiation of}}
52 void g4(const X4<int>&);
59 g4(X4<int>());
p5-cxx0x-no-extra-copy.cpp 35 struct X4 {
36 X4();
37 X4(const X4&, T = get_value_badly<T>());
43 void g4(const X4<int>&);
49 g4(X4<int>());
  /external/clang/test/CXX/except/except.spec/
p14-ir.cpp 22 struct X4 {
23 X4(X4 &) throw();
26 struct X5 : X0, X4 { };
  /external/clang/test/Preprocessor/
macro_fn_comma_swallow.c 22 #define X4(...) AA , ## __VA_ARGS__ BB
23 4: X4()
  /external/clang/test/CodeGenCXX/
override-layout.cpp 38 // CHECK: Type: struct X4
39 struct PACKED X4 {
54 X4();
72 X4 x4s[sizeof(X4)];
  /external/clang/test/SemaTemplate/
constructor-template.cpp 73 struct X4 {
74 X4();
75 ~X4();
76 X4(X4&);
77 template<typename T> X4(const T&, int = 17);
80 X4 test_X4(bool Cond, X4 x4) {
81 X4 a(x4, 17); // okay, constructor templat
    [all...]
temp_explicit.cpp 60 template<typename T> struct X4 {
68 void f2(X4<int&>); // okay, Inner, not instantiated
69 void f3(X4<int&>::Inner); // okay, Inner::VeryInner, not instantiated
71 template struct X4<int&>; // expected-note{{instantiation}}
72 template struct X4<float&>; // expected-note{{instantiation}}
instantiate-member-pointers.cpp 40 struct X4 {
46 int &get_X4(X4<&Y::x> x4, Y& y) {
47 return x4.getMember(y);
51 void accept_X4(X4<Member>);
53 void test_accept_X4(X4<&Y::x> x4) {
54 accept_X4(x4);
member-access-expr.cpp 95 struct X4 {
106 void test_X5(X5<X4> x5, X5<const X4> x5c, X4 *xp, const X4 *cxp) {
  /external/chromium/base/
bind_internal_win.h 99 template <typename R, typename X1, typename X2, typename X3, typename X4>
100 struct FunctionTraits<R(__stdcall *)(X1, X2, X3, X4)> {
101 typedef R (*NormalizedSig)(X1, X2, X3, X4);
107 typedef X4 B4;
111 template <typename R, typename X1, typename X2, typename X3, typename X4>
112 struct FunctionTraits<R(__fastcall *)(X1, X2, X3, X4)> {
113 typedef R (*NormalizedSig)(X1, X2, X3, X4);
119 typedef X4 B4;
123 template <typename R, typename X1, typename X2, typename X3, typename X4,
125 struct FunctionTraits<R(__stdcall *)(X1, X2, X3, X4, X5)>
    [all...]
bind_internal.h 214 template <typename R, typename X1, typename X2, typename X3, typename X4>
215 struct FunctionTraits<R(*)(X1, X2, X3, X4)> {
216 typedef R (*NormalizedSig)(X1, X2, X3, X4);
222 typedef X4 B4;
228 typename X4>
229 struct FunctionTraits<R(T::*)(X1, X2, X3, X4)> {
230 typedef R (T::*NormalizedSig)(X1, X2, X3, X4);
238 typedef X4 B5;
244 typename X4>
245 struct FunctionTraits<R(T::*)(X1, X2, X3, X4) const>
    [all...]
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy16x16_s.s 40 X4 DN D4.S8
50 VLD1 {X4,X5},[pSrc@128],step
54 VST1 {X4,X5,X6,X7},[pDst@128]!
59 VLD1 {X4,X5},[pSrc@128],step
63 VST1 {X4,X5,X6,X7},[pDst@128]!
68 VLD1 {X4,X5},[pSrc@128],step
72 VST1 {X4,X5,X6,X7},[pDst@128]!
77 VLD1 {X4,X5},[pSrc@128],step
81 VST1 {X4,X5,X6,X7},[pDst@128]!
  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 16 struct X4 { // expected-error {{must explicitly initialize the member 'x2'}} \
22 X4 x4; // expected-note {{first required here}} variable
  /external/clang/test/ASTMerge/Inputs/
class-template1.cpp 14 struct X4;
class-template2.cpp 14 struct X4;
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p20.cpp 70 struct X4 {
71 X4();
82 new (0, 0) X4; // expected-note{{instantiation}}
  /external/clang/test/Index/
annotate-nested-name-specifier.cpp 69 struct X4 {
76 ::X4<type>::g(t);
77 this->::X4<type>::g(t);
83 struct X4<Integer> {
91 ::X4<type>::g(t);
92 this->::X4<type>::g(t);
284 // CHECK: Identifier: "X4" [76:7 - 76:9] TemplateRef=X4:69:8
297 // CHECK: Identifier: "X4" [77:13 - 77:15] TemplateRef=X4:69:
    [all...]
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1.cpp 16 template <int (*F)(int)> struct X4 { X4(); };
17 template <int (*F)(int)> X4<F>::X4() { }
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/
typelist.h 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) >
374 #define _GLIBCXX_TYPELIST_CHAIN9(X0, X1, X2, X3, X4, X5, X6, X7, X8) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN8(X1, X2, X3, X4, X5, X6, X7, X8)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/
typelist.h 378 #define _GLIBCXX_TYPELIST_CHAIN5(X0, X1, X2, X3, X4) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN4(X1, X2, X3, X4) >
379 #define _GLIBCXX_TYPELIST_CHAIN6(X0, X1, X2, X3, X4, X5) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN5(X1, X2, X3, X4, X5) >
380 #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) >
381 #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) >
382 #define _GLIBCXX_TYPELIST_CHAIN9(X0, X1, X2, X3, X4, X5, X6, X7, X8) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN8(X1, X2, X3, X4, X5, X6, X7, X8)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/
typelist.h 378 #define _GLIBCXX_TYPELIST_CHAIN5(X0, X1, X2, X3, X4) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN4(X1, X2, X3, X4) >
379 #define _GLIBCXX_TYPELIST_CHAIN6(X0, X1, X2, X3, X4, X5) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN5(X1, X2, X3, X4, X5) >
380 #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) >
381 #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) >
382 #define _GLIBCXX_TYPELIST_CHAIN9(X0, X1, X2, X3, X4, X5, X6, X7, X8) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN8(X1, X2, X3, X4, X5, X6, X7, X8)
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/
typelist.h 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) >
374 #define _GLIBCXX_TYPELIST_CHAIN9(X0, X1, X2, X3, X4, X5, X6, X7, X8) __gnu_cxx::typelist::chain<X0, _GLIBCXX_TYPELIST_CHAIN8(X1, X2, X3, X4, X5, X6, X7, X8)
    [all...]

Completed in 859 milliseconds

1 2