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

1 2

  /external/clang/test/Preprocessor/
macro_fn_comma_swallow.c 22 #define X4(...) AA , ## __VA_ARGS__ BB
23 4: X4()
  /external/clang/test/CXX/expr/expr.post/expr.call/
p7-0x.cpp 16 struct X4 {
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/class/class.mem/
p13.cpp 61 struct X4 { // expected-note{{previous}}
66 unsigned X4; // expected-error{{redeclares 'X4'}}
  /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/CXX/expr/expr.unary/expr.new/
p20.cpp 70 struct X4 {
71 X4();
82 new (0, 0) X4; // expected-note{{instantiation}}
  /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
static-cast.cpp 179 struct X4 {
new-delete.cpp 142 class X4 {
149 void X4::release(X3 *x) {
  /external/clang/test/SemaTemplate/
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);
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}}
constructor-template.cpp 79 struct X4 {
80 X4();
81 ~X4();
82 X4(X4&);
83 template<typename T> X4(const T&, int = 17);
86 X4 test_X4(bool Cond, X4 x4) {
87 X4 a(x4, 17); // okay, constructor templat
    [all...]
member-access-expr.cpp 108 struct X4 {
119 void test_X5(X5<X4> x5, X5<const X4> x5c, X4 *xp, const X4 *cxp) {
member-template-access-expr.cpp 87 struct X4 {
92 void f(X4<X3<int> > x4i) {
instantiate-function-1.cpp 40 template <typename T> struct X4 {
50 template struct X4<void>; // expected-note{{in instantiation of}}
51 template struct X4<int>; // expected-note{{in instantiation of}}
  /external/libavc/common/
ih264_macros.h 86 * @brief Frequently used multiplications x2. x3, and x4
91 #define X4(a) ((a) << 2)
  /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/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/boringssl/src/crypto/fipsmodule/md4/
md4.c 139 uint32_t X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X12, X13, X14, X15;
160 X4 = l;
164 R0(A, B, C, D, X4, 3, 0);
198 R1(D, A, B, C, X4, 5, 0x5A827999L);
216 R2(C, D, A, B, X4, 11, 0x6ED9EBA1L);
  /external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
p1.cpp 21 template <int (*F)(int)> struct X4 { X4(); };
22 template <int (*F)(int)> X4<F>::X4() { }
p5.cpp 62 struct X4 : X3<&X1v> { };
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
multi-level-substitution.cpp 145 struct X4 {
156 int check8[X4<1, 3, 5>::Inner<tuple<unsigned_pair<1, 2>,
160 int check9[X4<1, 3>::Inner<tuple<unsigned_pair<1, 2>,
  /external/clang/test/CodeGen/
override-layout.c 48 // CHECK: Type: struct X4
49 struct X4 {
55 void use_X4() { struct X4 x4; x4.y = sizeof(struct X4); }; local
  /art/runtime/arch/arm64/
registers_arm64.h 31 X4 = 4,

Completed in 797 milliseconds

1 2