Searched refs:X4 (Results 1 - 25 of 45) sorted by relevance

12

/external/clang/test/CXX/class/class.mem/
H A Dp13.cpp31 struct X4 { struct
36 unsigned X4; // expected-error{{member 'X4' has the same name as its class}} member in union:X4::__anon1494::__anon1495
/external/clang/test/CXX/expr/expr.post/expr.call/
H A Dp7-0x.cpp16 struct X4 { struct
17 X4(const X4&) = default;
18 X4(X4&);
25 void f(X1 x1, X2 x2, X3 x3, X4 x4) {
29 vararg(x4); // expected-error{{cannot pass object of non-trivial type 'X4' through variadic function; call will abort at runtime}}
/external/clang/test/CXX/temp/temp.spec/temp.explicit/
H A Dp3-0x.cpp51 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/
H A Dp5-cxx03-extra-copy.cpp38 struct X4 { struct
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>());
H A Dp5-cxx0x-no-extra-copy.cpp35 struct X4 { struct
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/
H A Dp14-ir.cpp22 struct X4 { struct
23 X4(X4 &) throw();
26 struct X5 : X0, X4 { };
/external/clang/test/Preprocessor/
H A Dmacro_fn_comma_swallow.c22 #define X4(...) AA , ## __VA_ARGS__ BB macro
23 4: X4()
/external/clang/test/CodeGenCXX/
H A Doverride-layout.cpp38 // CHECK: Type: struct X4
39 struct PACKED X4 { struct
54 X4();
72 X4 x4s[sizeof(X4)];
/external/clang/test/SemaTemplate/
H A Dtemp_explicit.cpp60 template<typename T> struct X4 { struct
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}}
H A Dconstructor-template.cpp73 struct X4 { struct
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 template
82 X4
[all...]
H A Dinstantiate-member-pointers.cpp40 struct X4 { struct
46 int &get_X4(X4<&Y::x> x4, Y& y) {
51 void accept_X4(X4<Member>);
53 void test_accept_X4(X4<&Y::x> x4) {
H A Dmember-access-expr.cpp95 struct X4 { struct
106 void test_X5(X5<X4> x5, X5<const X4> x5c, X4 *xp, const X4 *cxp) {
H A Ddefault-arguments.cpp109 struct X4;
110 int array4[is_same<X4<add_pointer>,
111 X4<add_pointer, add_pointer::apply> >::value? 1 : -1];
H A Dinstantiate-function-1.cpp40 template <typename T> struct X4 { struct
50 template struct X4<void>; // expected-note{{in instantiation of}}
51 template struct X4<int>; // expected-note{{in instantiation of}}
H A Dmember-template-access-expr.cpp87 struct X4 { struct
92 void f(X4<X3<int> > x4i) {
/external/clang/test/SemaCXX/
H A Ddefault-constructor-initializers.cpp16 struct X4 { // expected-error {{must explicitly initialize the member 'x2'}} \ struct
22 X4 x4; // expected-note {{first required here}}
/external/clang/test/ASTMerge/Inputs/
H A Dclass-template1.cpp14 struct X4;
H A Dclass-template2.cpp14 struct X4;
/external/clang/test/Index/
H A Dannotate-nested-name-specifier.cpp69 struct X4 { struct
76 ::X4<type>::g(t);
77 this->::X4<type>::g(t);
83 struct X4<Integer> { struct
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
[all...]
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp20.cpp70 struct X4 { struct
71 X4();
82 new (0, 0) X4; // expected-note{{instantiation}}
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp1.cpp16 template <int (*F)(int)> struct X4 { X4(); }; struct in namespace:non_type_tmpl_param
17 template <int (*F)(int)> X4<F>::X4() { } function in class:non_type_tmpl_param::X4
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
H A Dp2-0x.cpp325 struct X4;
328 template<> void has_inline_namespaces::f<X4>(X4&);
332 template<> struct has_inline_namespaces::X0<X4>::MemberClass { };
334 template<> void has_inline_namespaces::X0<X4>::mem_func();
337 struct has_inline_namespaces::X0<X4>::MemberClassTemplate { };
340 void has_inline_namespaces::X0<X4>::mem_func_template(T&) { }
342 template<> int has_inline_namespaces::X0<X4>::value = 13;
/external/clang/test/CodeGen/
H A Doverride-layout.c49 // CHECK: Type: struct X4
50 struct X4 { struct
56 void use_X4() { struct X4 x4; x4.y = sizeof(struct X4); };
/external/boringssl/src/crypto/md4/
H A Dmd4.c128 uint32_t X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X12, X13, X14, X15; local
149 X4 = l;
153 R0(A, B, C, D, X4, 3, 0);
187 R1(D, A, B, C, X4, 5, 0x5A827999L);
205 R2(C, D, A, B, X4, 11, 0x6ED9EBA1L);
/external/libavc/common/
H A Dih264_macros.h91 #define X4(a) ((a) << 2) macro

Completed in 393 milliseconds

12