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

123

/external/compiler-rt/test/builtins/Unit/ppc/
H A DDD.h12 } DD; typedef in typeref:union:__anon19657
/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;
39 DD.Triggered = false;
40 DD.Loc = Loc;
41 DD.DeprecationData.Decl = D;
42 DD.DeprecationData.UnknownObjCClass = UnknownObjCClass;
43 DD.DeprecationData.ObjCProperty = ObjCProperty;
50 DD.DeprecationData.Message = MessageData;
51 DD
[all...]
H A DSemaExceptionSpec.cpp961 const CXXDestructorDecl *DD = RD->getDestructor(); local
962 if (DD)
963 CT = mergeCanThrow(CT, canCalleeThrow(*this, E, DD));
/external/compiler-rt/lib/builtins/ppc/
H A DDD.h12 }DD; typedef in typeref:union:__anon19609
/external/clang/test/SemaCXX/
H A Dconversion-delete-expr.cpp100 struct DD : BB { struct in inherits:BB
105 void foo7 (DD d)
/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.cpp378 const DwarfDebug *DD = AP->getDwarfDebug(); local
380 assert(!DD->useSplitDwarf() && "TODO: dwo files can't have relocations.");
384 DwarfCompileUnit *CU = DD->lookupUnit(Entry.getUnit());
403 const DwarfDebug *DD = AP->getDwarfDebug(); local
404 assert(DD && "Expected Dwarf Debug info to be available");
405 if (DD->getDwarfVersion() == 2)
553 DwarfDebug *DD = AP->getDwarfDebug(); local
554 MCSymbol *Label = DD->getDebugLocEntries()[Index].Label;
556 if (AP->MAI->doesDwarfUseRelocationsAcrossSections() && !DD->useSplitDwarf())
557 AP->EmitSectionOffset(Label, DD
[all...]
H A DDwarfFile.cpp51 void DwarfFile::emitUnits(DwarfDebug *DD, const MCSymbol *ASectionSym) { argument
66 DD->emitDIE(Die);
H A DDIEHash.cpp287 DwarfDebug &DD = *AP->getDwarfDebug(); local
289 DD.getDebugLocEntries()[LocList.getValue()].List)
290 DD.emitDebugLocEntry(Streamer, Entry);
H A DDwarfUnit.h85 DwarfDebug *DD; member in class:llvm::DwarfUnit
519 return DD->resolve(Ref);
/external/qemu/android/
H A Duser-config.c24 # define DD(...) D(__VA_ARGS__)
26 # define DD(...) ((void)0) macro
83 DD("looking user-config in: %s", uc->iniPath);
99 DD("creating missing directory: %s", parentPath);
108 DD("reading user-config file");
118 DD(" found %s = %d", KEY_WINDOW_X, uc->windowX);
121 DD(" found %s = %d", KEY_WINDOW_Y, uc->windowY);
126 DD(" found %s = %lld", KEY_UUID, uc->uuid);
146 DD(" Generated UUID = %lld", uc->uuid);
198 DD("Generate
[all...]
H A Dadb-qemud.c29 #define DD(...) VERBOSE_PRINT(adb,__VA_ARGS__) macro
342 DD("ADB debugging client %p is disconnected from the guest.", adb_dbg_client);
359 DD("Connecting ADB debugging guest: '%s'",
365 DD("Unable to create QEMUD client for ADB debugging guest.");
402 DD("Registered '%s' qemud service", DEBUG_SERVICE_NAME);
H A Dhw-pipe-net.c42 # define DD(...) printf(__VA_ARGS__), printf("\n") macro
46 # define DD(...) ((void)0) macro
379 DD("%s: flags=%d", __FUNCTION__, flags);
H A Dopengles.c67 #define DD(...) VERBOSE_PRINT(gles,__VA_ARGS__) macro
/external/clang/include/clang/AST/
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/lib/AST/
H A DMangle.cpp199 void MangleContext::mangleDtorBlock(const CXXDestructorDecl *DD, argument
204 mangleCXXDtor(DD, DT, Out);
/external/clang/lib/CodeGen/
H A DCGCXX.cpp344 if (const auto *DD = dyn_cast<CXXDestructorDecl>(MD))
345 return BuildAppleKextVirtualDestructorCall(DD, Dtor_Complete, RD);
354 const CXXDestructorDecl *DD,
357 const auto *MD = cast<CXXMethodDecl>(DD);
364 CGM.getTypes().arrangeCXXDestructor(DD, Dtor_Complete);
366 return ::BuildAppleKextVirtualCall(*this, GlobalDecl(DD, Type), Ty, RD);
353 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);
63 void *mem = MmapOrDie(sizeof(DD), "deadlock detector");
64 return new(mem) DD(flags);
67 DD::DD(const DDFlags *flags) function in class:__sanitizer::DD
72 DDPhysicalThread* DD::CreatePhysicalThread() {
76 void DD::DestroyPhysicalThread(DDPhysicalThread *pt) {
79 DDLogicalThread* DD::CreateLogicalThread(u64 ctx) {
87 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/llvm/include/llvm/CodeGen/
H A DAsmPrinter.h126 DwarfDebug *DD; member in class:llvm::AsmPrinter
134 DwarfDebug *getDwarfDebug() { return DD; }
/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.h63 void handleDestructorCall(const VarDecl *VD, const CXXDestructorDecl *DD) {} argument
153 CXXDestructorDecl *DD = const_cast<CXXDestructorDecl*>( local
156 V.handleDestructorCall(VD, DD);
340 void handleDestructorCall(const VarDecl *VD, const CXXDestructorDecl *DD);
/external/clang/include/clang/Sema/
H A DDelayedDiagnostic.h136 DelayedDiagnostic DD; local
137 DD.Kind = Access;
138 DD.Triggered = false;
139 DD.Loc = Loc;
140 new (&DD.getAccessData()) AccessedEntity(Entity);
141 return DD;
148 DelayedDiagnostic DD; local
149 DD.Kind = ForbiddenType;
150 DD.Triggered = false;
151 DD
213 struct DD { struct in class:clang::sema::DelayedDiagnostic
[all...]
/external/clang/lib/Parse/
H A DParseTemplate.cpp1292 DeclContext *DD = FunD; local
1293 while (DD && !DD->isTranslationUnit()) {
1294 DeclContextsToReenter.push_back(DD);
1295 DD = DD->getLexicalParent();

Completed in 499 milliseconds

123