Searched refs:D2 (Results 1 - 25 of 130) 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/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/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.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/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/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 { };
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 Ddcl_init_aggr.cpp107 struct D2 { struct
112 D2 d2;
/external/clang/test/CXX/special/class.inhctor/
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}}
H A Dp7.cpp14 struct D2 : B1, B2 { struct in inherits:B1,B2
17 D2(int);
/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 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.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/chromium_org/third_party/openmax_dl/dl/sp/src/arm/neon/
H A DomxSP_FFTInv_CCSToR_S32S16_Sfs_s.S80 #define dY0 D2.S16
81 #define dY0S32 D2.S32
/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/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;
H A Dtime_point.pass.cpp20 template <class D1, class D2, class De>
26 typedef std::chrono::time_point<C, D2> T2;
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dmodule-parsing.js83 module D2 = C1.D
84 module D3 = D2
150 export A, A1, A2, A3, B, I, C1, D1, D2, D3, E1, E2, E3, X, Y, Z, Wrap, x, y, UU
/external/clang/lib/AST/
H A DASTImporter.cpp229 bool IsStructurallyEquivalent(Decl *D1, Decl *D2);
262 Decl *D1, Decl *D2);
852 RecordDecl *D2 = Field2->getType()->castAs<RecordType>()->getDecl(); local
853 return IsStructurallyEquivalent(Context, D1, D2);
949 RecordDecl *D1, RecordDecl *D2) {
950 if (D1->isUnion() != D2->isUnion()) {
952 Context.Diag2(D2->getLocation(), diag::warn_odr_tag_type_inconsistent)
953 << Context.C2.getTypeDeclType(D2);
960 if (D1->isAnonymousStructOrUnion() && D2->isAnonymousStructOrUnion()) {
964 if (Optional<unsigned> Index2 = findAnonymousStructOrUnionIndex(D2)) {
948 IsStructurallyEquivalent(StructuralEquivalenceContext &Context, RecordDecl *D1, RecordDecl *D2) argument
1106 IsStructurallyEquivalent(StructuralEquivalenceContext &Context, EnumDecl *D1, EnumDecl *D2) argument
1193 IsStructurallyEquivalent(StructuralEquivalenceContext &Context, TemplateTypeParmDecl *D1, TemplateTypeParmDecl *D2) argument
1209 IsStructurallyEquivalent(StructuralEquivalenceContext &Context, NonTypeTemplateParmDecl *D1, NonTypeTemplateParmDecl *D2) argument
1237 IsStructurallyEquivalent(StructuralEquivalenceContext &Context, TemplateTemplateParmDecl *D1, TemplateTemplateParmDecl *D2) argument
1255 IsStructurallyEquivalent(StructuralEquivalenceContext &Context, ClassTemplateDecl *D1, ClassTemplateDecl *D2) argument
1270 IsStructurallyEquivalent(StructuralEquivalenceContext &Context, Decl *D1, Decl *D2) argument
1291 IsStructurallyEquivalent(Decl *D1, Decl *D2) argument
1313 Decl *D2 = TentativeEquivalences[D1]; local
2426 EnumDecl *D2 = EnumDecl::Create(Importer.getToContext(), DC, local
2559 RecordDecl *D2 = AdoptDecl; local
4092 ClassTemplateSpecializationDecl *D2 local
4285 VarTemplateSpecializationDecl *D2 = VarTemplate->findSpecialization( local
[all...]
/external/chromium_org/google_apis/drive/
H A Dtask_util.h55 template<typename T1, typename T2, typename D2>
56 struct ComposedCallback<void(T1, scoped_ptr<T2, D2>)> {
59 const base::Callback<void(T1, scoped_ptr<T2, D2>)>& callback,
60 T1 arg1, scoped_ptr<T2, D2> arg2) {

Completed in 8776 milliseconds

123456