Searched defs:D2 (Results 1 - 25 of 49) sorted by relevance

12

/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D067-nested-ifdef-ifndef.c2 #define D2 macro
15 #ifndef D2
25 #ifdef D2
/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/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/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/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/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/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
H A Dp3-cxx0x.cpp15 class D2 : public B { class in inherits:B
19 using C::g; // expected-error{{using declaration refers into 'C::', which is not a base class of 'D2'}}
/external/clang/test/CXX/special/class.inhctor/
H A Dp7.cpp14 struct D2 : B1, B2 { struct in inherits:B1,B2
17 D2(int);
H A Dp3.cpp17 struct D2 : B2 { // expected-note 2 {{candidate constructor}} struct in inherits:B2
20 D2 d2a(1), d2b(1, 1), d2c(1, 1, 1);
22 D2 fd2() { return 1; } // expected-error {{no viable conversion}}
/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/clang/test/CodeGenCXX/
H A Dapple-kext-indirect-call-2.C63 struct D2 : virtual Base3 { struct in inherits:Base3
67 struct Sub : D1, D2 {
70 char* D2::abc(void) const { return 0; }
75 char* c = p->D2::abc();
/external/clang/test/SemaCXX/
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 { };
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 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 Ddestructor.cpp28 struct D2 { struct
29 void ~D2() { } // \
H A Dcxx1y-variable-templates_in_class.cpp197 class D2 { class in namespace:in_class_template
202 template<typename U> U* D2<float>::Data<U*> = (U*)(0) + 1;
203 template int* D2<float>::Data<int*>; // expected-note {{previous}}
204 template int* D2<float>::Data<int*>; // expected-error {{duplicate explicit instantiation}}
H A Ddcl_init_aggr.cpp107 struct D2 { struct
112 D2 d2;
/external/clang/test/Layout/
H A Dms-x86-pack-and-align.cpp312 struct D2 : D1 { char a; }; struct in inherits:D1
317 // CHECK-NEXT: 0 | struct D2
328 // CHECK-X64-NEXT: 0 | struct D2
560 sizeof(D2)+
H A Dms-x86-empty-virtual-base.cpp22 struct D2 { int a[8]; D2() {printf("D2 : %3d\n", ((int)(__SIZE_TYPE__)this)&0xfff);} }; function in struct:D2
624 struct T : virtual B0, virtual B1, virtual C0, virtual D2, virtual B2, virtual B3, virtual B4 {
638 // CHECK-NEXT: 44 | struct D2 (virtual base)
654 // CHECK-X64-NEXT: 44 | struct D2 (virtual base)
/external/llvm/unittests/Analysis/
H A DLazyCallGraphTest.cpp151 LazyCallGraph::Node &D2 = *I++; local
152 EXPECT_EQ("d2", D2.getFunction().getName());
200 EXPECT_EQ(D2.end(), std::next(D2.begin()));
201 EXPECT_EQ("d3", D2.begin()->getFunction().getName());
463 LazyCallGraph::Node &D2 = *CG.lookup(lookupFunction(*M, "d2")); local
475 ASSERT_EQ(&DC, CG.lookupSCC(D2));
477 ASSERT_EQ(1, std::distance(D2.begin(), D2.end()));
492 CC.insertIncomingEdge(D2, C
544 LazyCallGraph::Node &D2 = *CG.lookup(lookupFunction(*M, "d2")); local
[all...]
/external/chromium_org/third_party/opus/src/celt/
H A Dmathops.h192 #define D2 14819 macro
199 return ADD16(D0, MULT16_16_Q15(frac, ADD16(D1, MULT16_16_Q15(frac, ADD16(D2 , MULT16_16_Q15(D3,frac))))));
/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/special/class.dtor/
H A Dp5-0x.cpp93 struct D2 : D1 { // expected-note {{virtual destructor requires an unambiguous, accessible 'operator delete'}} \ struct in inherits:D1
94 // expected-error {{deleted function '~D2' cannot override a non-deleted}}

Completed in 1023 milliseconds

12