Searched refs:D2 (Results 1 - 25 of 127) sorted by relevance

123456

/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp4.cpp12 typedef struct D { } D2; typedef in struct:S
13 typedef D2 D;
/external/clang/test/CodeGen/
H A Dmips64-class-return.cpp19 class D2 : public B0 { class in inherits:B0
25 extern D2 gd2;
38 void foo3(D2 a0) {
/external/mesa3d/src/glsl/glcpp/tests/
H A D067-nested-ifdef-ifndef.c2 #define D2 macro
15 #ifndef D2
25 #ifdef D2
/external/clang/test/Lexer/
H A D11-27-2007-FloatLiterals.c12 double D2 = 02e32; variable
/external/clang/test/Misc/
H A Ddiag-line-wrapping.cpp6 struct D2 : B {}; struct in inherits:B
7 struct DD : D1, D2 {
13 // CHECK: struct DD -> struct D2 -> struct B
/external/clang/test/CodeGenCXX/
H A Dapple-kext-indirect-call-2.cpp6 // CHECK: @_ZTV2D2 = unnamed_addr constant [5 x i8*] [i8* null, i8* null, i8* null, i8* bitcast (i8* (%struct.D2*)* @_ZNK2D23abcEv to i8*), i8* null]
63 struct D2 : virtual Base3 { struct in inherits:Base3
67 struct Sub : D1, D2 {
70 char* D2::abc(void) const { return 0; }
73 // CHECK: [[W1:%.*]] = load i8* (%struct.D2*)*, i8* (%struct.D2*)** getelementptr inbounds (i8* (%struct.D2*)*, i8* (%struct.D2*)** bitcast ([5 x i8*]* @_ZTV2D2 to i8* (%struct.D2*)**), i64 3)
75 char* c = p->D2
[all...]
H A Dhomogeneous-aggregates.cpp26 struct D2 : Base2 { // homogeneous aggregate struct in inherits:Base2
48 // ARM32: define arm_aapcs_vfpcc %struct.D2 @_Z7func_D22D2(%struct.D2 %x.coerce)
49 // ARM64: define %struct.D2 @_Z7func_D22D2([3 x double] %x.coerce)
50 // X64: define x86_vectorcallcc %struct.D2 @"\01_Z7func_D22D2@@24"(double %x.0, double %x.1, double %x.2)
51 D2 CC func_D2(D2 x) { return x; }
/external/clang/test/Modules/
H A Dmacro-reexport.cpp31 #elif defined(D2)
/external/clang/test/SemaTemplate/
H A Dclass-template-id-2.cpp21 struct D2 { struct in namespace:N
H A Delaborated-type-specifier.cpp13 struct D2 { struct in namespace:PR6915
19 template class D<D2>; // expected-note{{in instantiation of}}
/external/eigen/bench/tensors/
H A Dcontraction_benchmarks_cpu.cc14 #define BM_ContractionCPU(D1, D2, D3) \
15 static void BM_##Contraction##_##D1##x##D2##x##D3(int iters, int Threads) { \
18 BenchmarkSuite<Eigen::ThreadPoolDevice, float> suite(device, D1, D2, D3); \
21 BENCHMARK_RANGE(BM_##Contraction##_##D1##x##D2##x##D3, 1, 32);
/external/clang/test/SemaCXX/
H A Dmember-name-lookup.cpp84 struct D2 : B2, C2 { struct in inherits:B2,C2
89 struct G : F, D2 {
93 void test_virtual_lookup(D2 d2, G g) {
101 D2::E e = D2::enumerator; // okay
102 D2::type t = 0; // okay
104 D2::E2 e2 = D2::enumerator2; // okay
106 D2::E3 e3; // expected-error{{member 'E3' found in multiple base classes of different types}}
112 void D2
[all...]
H A Dderived-to-base-ambig.cpp16 class D2 : public B2, public C2 { }; class in inherits:B2,C2
17 class E2 : public D2, public C2, public virtual A2 { }; // expected-warning{{direct base 'C2' is inaccessible due to ambiguity:\n class E2 -> class D2 -> class C2\n class E2 -> class C2}}
18 class F2 : public E2, public A2 { }; // expected-warning{{direct base 'A2' is inaccessible due to ambiguity:\n class F2 -> class E2 -> class D2 -> class B2 -> class A2\n class F2 -> class A2}}
H A Dconversion-delete-expr.cpp36 struct D2 : B2 { struct in inherits:B2
40 void f2 (D2 d)
42 delete d; // expected-error {{ambiguous conversion of delete expression of type 'D2' to a pointer}}
H A Dexceptions.cpp167 struct D2 : D {}; struct in namespace:HandlerInversion
206 } catch (D2 &d) { // expected-warning {{exception of type 'HandlerInversion::D2 &' will be caught by earlier handler}}
225 } catch (D2 &d) { // expected-warning {{exception of type 'HandlerInversion::D2 &' will be caught by earlier handler}}
230 } catch (const D2 &d) { // expected-warning {{exception of type 'const HandlerInversion::D2 &' will be caught by earlier handler}}
/external/clang/test/CXX/special/class.inhctor/
H A Dp7.cpp16 struct D2 : B1, B2 { struct in inherits:B1,B2
19 D2(int);
22 D2 d2(0);
H A Dp3.cpp20 struct D2 : B2 { // expected-note 2{{candidate constructor}} struct in inherits:B2
23 D2 d2a(1), d2b(1, 1), d2c(1, 1, 1);
25 D2 fd2() { return 1; } // expected-error {{no viable conversion}}
/external/libcxx/test/std/utilities/memory/unique.ptr/unique.ptr.single/
H A Dpointer_type.pass.cpp26 struct D2 { struct
47 typedef std::unique_ptr<int, D2> P;
/external/clang/test/CXX/special/class.init/class.inhctor.init/
H A Dp2.cpp18 struct D2 : V1, V2 { struct in namespace:std_example
24 D2 d2(0); // OK: initializes virtual B base class, which initializes the A base class
/external/clang/test/Sema/
H A Dwarn-duplicate-enum.c23 D2, enumerator in enum:D
25 D4 = D2, // no warning
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp15.cpp17 struct D2 : B1, B2 { struct in inherits:B1,B2
20 D2(int);
22 D2 d2(0); // ok
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dsized_delete_test.cc30 struct D2 { struct
32 ~D2() { fprintf(stderr, "D2::~D2\n"); }
80 D1 *d1 = reinterpret_cast<D1*>(new D2[10]);
83 // ARRAY-NOT: D2::~D2
/external/clang/test/CXX/special/class.copy/
H A Dp23-cxx11.cpp104 struct D2 { struct
105 D2 &operator=(D2 &&) = default; // expected-note {{here}} expected-note {{copy assignment operator is implicitly deleted}}
129 template struct MoveAssign<D2>; // expected-note {{here}}
130 template struct MoveOrCopyAssign<D2>; // expected-note {{here}}
/external/clang/test/CXX/class.derived/class.member.lookup/
H A Dp8.cpp13 struct D2 : public Base {}; struct in namespace:PR5820
15 struct Derived : public D1, public D2 {
/external/libcxx/test/std/utilities/time/time.traits/time.traits.specializations/
H A Dduration.pass.cpp20 template <class D1, class D2, class De>
24 typedef typename std::common_type<D1, D2>::type Dc;

Completed in 516 milliseconds

123456