Searched defs:X3 (Results 1 - 25 of 42) sorted by relevance

12

/external/clang/test/Preprocessor/
H A Dmacro_fn_comma_swallow.c15 #define X3(b, ...) {b, ## __VA_ARGS__} macro
16 3: X3(foo)
/external/clang/test/CXX/class/class.mem/
H A Dp13.cpp24 struct X3 { struct
26 X3 // expected-error{{member 'X3' has the same name as its class}} enumerator in enum:X3::E
/external/clang/test/CXX/special/class.ctor/
H A Dp1.cpp49 // We used to parse 'X3::X3' as a member function declaration.
52 struct X3 { struct
53 X3::X3(T1()); // expected-error {{extra qualification on member 'X3'}}
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-cxx03-extra-copy.cpp21 struct X3 { struct
22 X3();
25 X3(X3&); // expected-note{{candidate constructor not viable: expects an l-value 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.
H A Dp5-cxx0x-no-extra-copy.cpp20 struct X3 { struct
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/
H A Dp14-ir.cpp18 struct X3 : X0, X1 { struct in inherits: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* nonnull) unnamed_addr
38 X3 x3a(x3);
/external/clang/test/CXX/expr/expr.post/expr.call/
H A Dp7-0x.cpp12 struct X3 { struct
13 X3(const X3&) = default;
25 void f(X1 x1, X2 x2, X3 x3, X4 x4) {
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
H A Dp2.cpp41 struct X3 { struct in namespace:DependentSubstPartialOrdering
48 int check_X3[X<X3, void, void>::value == 3? 1 : -1];
/external/clang/test/CXX/temp/temp.decls/temp.friend/
H A Dp4.cpp31 struct X3 { struct
37 int array2[sizeof(X3<int>)];
38 int array3[sizeof(X3<float>)];
41 X3<int> xi;
43 X3<float> xf;
/external/clang/test/CXX/temp/temp.param/
H A Dp9-0x.cpp16 struct X3 { struct
18 friend void f0(X3);
21 friend void f1(X3) {
45 template<typename T> struct X3;
50 template<typename T = int> struct Inner::X3 { }; struct in class:PR8748::Inner
/external/clang/test/SemaTemplate/
H A Dcopy-ctor-assign.cpp47 struct X3 : X2<int> { struct in inherits:X2
50 void test_X2(X3 &to, X3 from) {
H A Dtemp_explicit.cpp50 template<typename T> struct X3 { struct
56 void f1(X3<int&>); // okay, Inner, not instantiated
58 template struct X3<int&>; // expected-note{{instantiation}}
H A Dconstructor-template.cpp67 struct X3 { struct
68 template<typename T> X3(T);
71 template<> X3::X3(X3); // expected-error{{must pass its first argument by reference}}
H A Dexplicit-instantiation.cpp88 template<typename> struct X3 { }; struct
89 inline template struct X3<int>; // expected-warning{{ignoring 'inline' keyword on explicit template instantiation}}
90 static template struct X3<float>; // expected-warning{{ignoring 'static' keyword on explicit template instantiation}}
H A Dinstantiate-member-pointers.cpp29 struct X3 { struct
30 X3<T, Class, Ptr> &operator=(const T& value) {
35 X3<int, Y, &Y::x> x3;
41 X3<int, Y, Member> member;
H A Dinstantiate-static-var.cpp78 struct X3 {}; struct
84 void Foo(X3<1>);
93 Y3().Foo(X3<SizeOf<char>::value>());
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp20.cpp53 struct X3 { struct
54 X3();
66 new (0, 0) X3; // expected-note{{instantiation}}
/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
H A Dp1.cpp95 class X3 { class
100 void X3<T>::F() {}
/external/clang/test/SemaCXX/
H A Ddefault-constructor-initializers.cpp11 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}} struct in inherits:X2
13 X3 x3; // expected-note {{first required here}}
/external/clang/test/CodeGenCXX/
H A Doverride-layout.cpp32 // CHECK: Type: struct X3
33 struct PACKED X3 : virtual public X1, public X0 { struct in inherits:X1,X0
71 X3 x3s[sizeof(X3)];
/external/clang/test/Index/
H A Dannotate-nested-name-specifier.cpp55 struct X3 { struct
/external/chromium_org/third_party/boringssl/src/crypto/md4/
H A Dmd4.c125 uint32_t X0, X1, X2, X3, X4, X5, X6, X7, X8, X9, X10, X11, X12, X13, X14, X15; local
143 X3 = l;
147 R0(B, C, D, A, X3, 19, 0);
195 R1(A, B, C, D, X3, 3, 0x5A827999L);
212 R2(A, B, C, D, X3, 3, 0x6ED9EBA1L);
/external/clang/test/CXX/temp/temp.arg/temp.arg.nontype/
H A Dp1.cpp14 template <int& N> struct X3 { X3(); }; struct in namespace:non_type_tmpl_param
15 template <int& N> X3<N>::X3() { } function in class:non_type_tmpl_param::X3
34 template <int (&fp)(int)> struct X3 { }; // expected-note 4{{here}} struct in namespace:addr_of_obj_or_func
69 X3<f> x3a;
70 X3<&f> x3a_addr; // expected-error {{address taken}}
71 X3<f_tmpl> x3b;
72 X3<&f_tmpl> x3b_addr; // expected-error {{address taken}}
73 X3<f_tmp
[all...]
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dmulti-level-substitution.cpp113 struct X3 { struct in namespace:PacksAtDifferentLevels
125 int check6[X3<short, int, long>::Inner<tuple<pair<short, unsigned short>,
133 int check7[X3<short, int>::Inner<tuple<pair<short, unsigned short>,
/external/clang/test/CodeGen/
H A Doverride-layout.c40 // CHECK: Type: struct X3
41 struct X3 { struct
46 void use_X3() { struct X3 x3; x3.y = sizeof(struct X3); };

Completed in 872 milliseconds

12