Searched defs:DD (Results 1 - 25 of 63) sorted by relevance

123

/external/compiler-rt/test/builtins/Unit/ppc/
H A DDD.h12 } DD; typedef in typeref:union:__anon3875
/external/clang/test/Misc/
H A Ddiag-line-wrapping.cpp7 struct DD : D1, D2 { struct in inherits:D1,D2
12 // CHECK: struct DD -> struct D1 -> struct B
13 // CHECK: struct DD -> struct D2 -> struct B
/external/clang/lib/Sema/
H A DDelayedDiagnostic.cpp30 DelayedDiagnostic DD; local
33 DD.Kind = Deprecation;
36 DD.Kind = Unavailable;
41 DD.Triggered = false;
42 DD.Loc = Loc;
43 DD.DeprecationData.Decl = D;
44 DD.DeprecationData.UnknownObjCClass = UnknownObjCClass;
45 DD.DeprecationData.ObjCProperty = ObjCProperty;
52 DD.DeprecationData.Message = MessageData;
53 DD
[all...]
H A DSemaCUDA.cpp389 bool Sema::isEmptyCudaDestructor(SourceLocation Loc, CXXDestructorDecl *DD) { argument
391 if (!DD)
394 if (!DD->isDefined() && DD->isTemplateInstantiation())
395 InstantiateFunctionDefinition(Loc, DD->getFirstDecl());
400 if (DD->isTrivial())
406 if (!DD->hasTrivialBody())
409 const CXXRecordDecl *ClassDecl = DD->getParent();
/external/compiler-rt/lib/builtins/ppc/
H A DDD.h12 } DD; typedef in typeref:union:__anon3797
/external/clang/test/CodeGenCXX/
H A Dstrict-vtable-pointers.cpp61 DynamicDerived DD; local
62 DD.foo();
105 DynamicDerived *DD = new (DB) DynamicDerived; local
106 DD->foo();
107 DD->~DynamicDerived();
/external/clang/test/SemaCXX/
H A Dconversion-delete-expr.cpp100 struct DD : BB { struct in inherits:BB
105 void foo7 (DD d)
/external/clang/include/clang/AST/
H A DASTMutationListener.h81 virtual void ResolvedOperatorDelete(const CXXDestructorDecl *DD, argument
H A DDependentDiagnostic.h48 DependentDiagnostic *DD = Create(Context, Parent, PDiag); local
49 DD->AccessData.Loc = Loc.getRawEncoding();
50 DD->AccessData.IsMember = IsMemberAccess;
51 DD->AccessData.Access = AS;
52 DD->AccessData.TargetDecl = TargetDecl;
53 DD->AccessData.NamingClass = NamingClass;
54 DD->AccessData.BaseObjectType = BaseObjectType.getAsOpaquePtr();
55 return DD;
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
H A Dp5-cxx0x.cpp28 struct DD { struct
29 ~DD() = delete; // expected-note 2{{here}}
34 DD dd();
113 DD operator+(PD &a, PD &b);
118 DD operator,(int a, PD b);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.cpp446 const DwarfDebug *DD = AP->getDwarfDebug(); local
448 assert(!DD->useSplitDwarf() && "TODO: dwo files can't have relocations.");
452 DwarfCompileUnit *CU = DD->lookupUnit(Entry->getUnit());
469 const DwarfDebug *DD = AP->getDwarfDebug(); local
470 assert(DD && "Expected Dwarf Debug info to be available");
471 if (DD->getDwarfVersion() == 2)
594 DwarfDebug *DD = AP->getDwarfDebug(); local
595 MCSymbol *Label = DD->getDebugLocs().getList(Index).Label;
596 AP->emitDwarfSymbolReference(Label, /*ForceOffset*/ DD->useSplitDwarf());
H A DDIEHash.cpp274 DwarfDebug &DD = *AP->getDwarfDebug(); local
275 const DebugLocStream &Locs = DD.getDebugLocs();
277 DD.emitDebugLocEntry(Streamer, Entry);
H A DDwarfUnit.h83 DwarfDebug *DD; member in class:llvm::DwarfUnit
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DAsmPrinter.h113 /// DD - If the target supports dwarf debug info, this pointer is non-null.
114 DwarfDebug *DD; member in class:llvm::AsmPrinter
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.h46 DwarfDebug *DD; member in class:llvm::CompileUnit
/external/clang/lib/AST/
H A DMangle.cpp212 void MangleContext::mangleDtorBlock(const CXXDestructorDecl *DD, argument
217 mangleCXXDtor(DD, DT, Out);
239 else if (const auto *DD = dyn_cast<CXXDestructorDecl>(DC))
240 mangleDtorBlock(DD, /*DT*/ Dtor_Complete, BD, Out);
/external/clang/lib/CodeGen/
H A DCGCXX.cpp226 if (const auto *DD = dyn_cast<CXXDestructorDecl>(MD)) {
227 GD = GlobalDecl(DD, toCXXDtorType(Type));
301 if (const auto *DD = dyn_cast<CXXDestructorDecl>(MD))
302 return BuildAppleKextVirtualDestructorCall(DD, Dtor_Complete, RD);
311 const CXXDestructorDecl *DD,
314 const auto *MD = cast<CXXMethodDecl>(DD);
321 DD, StructorType::Complete);
323 return ::BuildAppleKextVirtualCall(*this, GlobalDecl(DD, Type), Ty, RD);
310 BuildAppleKextVirtualDestructorCall( const CXXDestructorDecl *DD, CXXDtorType Type, const CXXRecordDecl *RD) argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_deadlock_detector1.cc36 struct DD : public DDetector { struct in namespace:__sanitizer
41 explicit DD(const DDFlags *flags);
64 void *mem = MmapOrDie(sizeof(DD), "deadlock detector");
65 return new(mem) DD(flags);
68 DD::DD(const DDFlags *flags) function in class:__sanitizer::DD
73 DDPhysicalThread* DD::CreatePhysicalThread() {
77 void DD::DestroyPhysicalThread(DDPhysicalThread *pt) {
80 DDLogicalThread* DD::CreateLogicalThread(u64 ctx) {
88 void DD
[all...]
H A Dsanitizer_deadlock_detector2.cc84 struct DD : public DDetector { struct in namespace:__sanitizer
85 explicit DD(const DDFlags *flags);
119 void *mem = MmapOrDie(sizeof(DD), "deadlock detector");
120 return new(mem) DD(flags);
123 DD::DD(const DDFlags *flags) function in class:__sanitizer::DD
129 DDPhysicalThread* DD::CreatePhysicalThread() {
135 void DD::DestroyPhysicalThread(DDPhysicalThread *pt) {
140 DDLogicalThread* DD::CreateLogicalThread(u64 ctx) {
148 void DD
[all...]
/external/guice/core/test/com/googlecode/guice/bundle/
H A DOSGiTestActivator.java387 private static class DD class in class:OSGiTestActivator
390 private DD() {} method in class:OSGiTestActivator.DD
/external/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h140 DwarfDebug *DD; member in class:llvm::AsmPrinter
148 DwarfDebug *getDwarfDebug() { return DD; }
149 DwarfDebug *getDwarfDebug() const { return DD; }
/external/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp362 COFF::DataDirectory &DD) {
363 IO.mapRequired("RelativeVirtualAddress", DD.RelativeVirtualAddress);
364 IO.mapRequired("Size", DD.Size);
361 mapping(IO &IO, COFF::DataDirectory &DD) argument
/external/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp88 const object::data_directory *DD; local
89 if (Obj.getDataDirectory(I++, DD))
92 DestDD->RelativeVirtualAddress = DD->RelativeVirtualAddress;
93 DestDD->Size = DD->Size;
/external/clang/test/CodeGen/
H A D2002-07-14-MiscTests3.c147 double AA, double BB, double CC, double DD,
151 return X + Y + Z + AA + BB + CC + DD + EE + FF + GG + HH
146 MathFunc(double X, double Y, double Z, double AA, double BB, double CC, double DD, double EE, double FF, double GG, double HH, double aAA, double aBB, double aCC, double aDD, double aEE, double aFF) argument
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h105 void handleDestructorCall(const VarDecl *VD, const CXXDestructorDecl *DD) {} argument
195 CXXDestructorDecl *DD = const_cast<CXXDestructorDecl*>( local
198 V.handleDestructorCall(VD, DD);
449 void handleDestructorCall(const VarDecl *VD, const CXXDestructorDecl *DD);

Completed in 763 milliseconds

123