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

1 2 3 4 5

  /external/clang/test/CXX/class/class.mem/
p14.cpp 17 struct X2 {
18 X2();
19 float X2; // expected-error{{member 'X2' has the same name as its class}}
p13.cpp 19 struct X2 {
20 typedef int X2; // expected-error{{member 'X2' has the same name as its class}}
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p13.cpp 38 struct X2 {
  /external/clang/test/Preprocessor/
macro_fn_comma_swallow.c 10 #define X2(Y) fo2{A,##Y}
11 2: X2()
  /external/clang/test/CXX/expr/expr.post/expr.call/
p7-0x.cpp 7 struct X2 {
8 X2();
9 ~X2();
25 void f(X1 x1, X2 x2, X3 x3, X4 x4) {
27 vararg(x2); // expected-error{{cannot pass object of non-trivial type 'X2' through variadic function; call will abort at runtime}}
  /external/clang/test/CodeGenCXX/
instantiate-temporaries.cpp 12 struct X2 {
29 (X2){};
attr-used.cpp 19 struct X2 {
  /external/clang/test/SemaTemplate/
canonical-expr-type.cpp 41 struct X2 {
instantiate-non-dependent-types.cpp 10 struct X2 {
14 X2<int> x;
temp_explicit_cxx0x.cpp 14 template<typename T> struct X2 { }; // expected-note{{here}}
23 template struct X2<float>; // expected-error{{at global scope}}
partial-spec-instantiate.cpp 11 template <class T> struct X2 {};
14 struct X2<U*> {
20 void a(char *a, char *b) {X2<char*>::f();}
temp_class_order.cpp 30 struct X2 { };
33 struct X2<T*, U> { }; // expected-note{{matches}}
36 struct X2<T, U*> { }; // expected-note{{matches}}
39 struct X2<const T*, const U*> { };
41 X2<int*, int*> x2a; // expected-error{{ambiguous}}
42 X2<const int*, const int*> x2b;
  /external/clang/test/CXX/basic/basic.scope/basic.scope.pdecl/
p9.cpp 17 template<template<class> class X0 = X0> struct X2 { };
18 template<> struct X2<X0> { static const bool value = true; };
19 int array2[X2<>::value? 1 : -1];
  /external/clang/test/CXX/special/class.ctor/
p1.cpp 45 class X2 {
46 X2::X2(); // expected-error {{extra qualification on member 'X2'}}
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.static/
p1.cpp 15 struct X2 { }; // expected-note{{candidate constructor (the implicit copy constructor) not viable}}
22 X2& get_X2() {
23 return X0<X2>::value; // expected-note{{instantiation}}
  /external/clang/test/Parser/
cxx11-brace-initializers.cpp 13 S X2 = {1, 1,};
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_Copy8x8_s.s 39 X2 DN D2.S8
47 VLD1 {X2},[pSrc],step
51 VST1 {X2,X3},[pDst]!
55 VLD1 {X2},[pSrc],step
59 VST1 {X2,X3},[pDst]!
  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p5-cxx03-extra-copy.cpp 14 struct X2 {
15 X2();
18 X2(const X2&); // expected-note{{declared private here}}
50 void g2(const X2&);
57 g2(X2()); // expected-warning{{C++98 requires an accessible copy constructor for class 'X2' when binding a reference to a temporary; was private}}
p5-cxx0x-no-extra-copy.cpp 13 struct X2 {
14 X2();
17 X2(const X2&);
41 void g2(const X2&);
47 g2(X2());
  /external/clang/test/CXX/except/except.spec/
p14-ir.cpp 15 struct X2 : X1 {
16 X2();
28 void test(X2 x2, X3 x3, X5 x5) {
29 // CHECK: define linkonce_odr void @_ZN2X2C1ERKS_(%struct.X2* %this, %struct.X2* nonnull) unnamed_addr
33 X2 x2a(x2);
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/temp.class.order/
p2.cpp 37 struct X2 {
47 int check_X2[X<X2, void, void>::value == 2? 1 : -1];
  /external/clang/test/CXX/temp/temp.decls/temp.friend/
p4.cpp 13 struct X2 {
20 int array0[sizeof(X2<int>)];
21 int array1[sizeof(X2<float>)]; // expected-note{{instantiation of}}
24 X2<int> xi;
26 X2<float> xf;
  /external/clang/test/CXX/temp/temp.param/
p3.cpp 21 template<class T, T i> struct X2 {
p9-0x.cpp 14 struct X2;
36 struct X2 {
41 template<typename T = int> void X2<T>::f0() { } // expected-error{{cannot add a default template argument to the definition of a member of a class template}}
42 template<typename T> template<typename U = int> void X2<T>::f1() { } // expected-error{{cannot add a default template argument to the definition of a member of a class template}}
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p1.cpp 56 struct X2 {
71 T X2<T, U>::static_member1 = 17; // expected-error{{cannot initialize}}
74 U X2<T, U>::static_member2; // expected-error{{no matching}}
76 template void X2<int, float>::f(int &, float);
77 template void X2<int, float>::f(int &, double); // expected-error{{does not refer}}
78 template void X2<int, int*>::f(int&, int*); // expected-note{{instantiation}}
80 template struct X2<int, float>::Inner;
81 template struct X2<int, Incomplete>::Inner; // expected-note{{instantiation}}
83 template int X2<int, float>::static_member1;
84 template int* X2<int*, float>::static_member1; // expected-note{{instantiation}
    [all...]

Completed in 1334 milliseconds

1 2 3 4 5