Searched refs:DD (Results 1 - 25 of 81) sorted by relevance

1234

/freebsd-10.2-release/contrib/llvm/tools/clang/lib/Sema/
H A DDelayedDiagnostic.cpp27 DelayedDiagnostic DD; local
28 DD.Kind = Deprecation;
29 DD.Triggered = false;
30 DD.Loc = Loc;
31 DD.DeprecationData.Decl = D;
32 DD.DeprecationData.UnknownObjCClass = UnknownObjCClass;
33 DD.DeprecationData.ObjCProperty = ObjCProperty;
40 DD.DeprecationData.Message = MessageData;
41 DD.DeprecationData.MessageLen = Msg.size();
42 return DD;
[all...]
H A DSemaOpenMP.cpp880 CXXDestructorDecl *DD = RD->getDestructor(); local
881 if (DD) {
882 if (CheckDestructorAccess(ELoc, DD, PD) == AR_inaccessible ||
883 DD->isDeleted()) {
893 MarkFunctionReferenced(ELoc, DD);
894 DiagnoseUseOfDecl(DD, ELoc);
1010 CXXDestructorDecl *DD = RD->getDestructor(); local
1011 if (DD) {
1012 if (CheckDestructorAccess(ELoc, DD, PD) == AR_inaccessible ||
1013 DD
[all...]
H A DSemaAccess.cpp1478 void Sema::HandleDelayedAccessCheck(DelayedDiagnostic &DD, Decl *D) { argument
1496 AccessTarget Target(DD.getAccessData());
1498 if (CheckEffectiveAccess(*this, EC, DD.Loc, Target) == ::AR_inaccessible)
1499 DD.Triggered = true;
1502 void Sema::HandleDependentAccessCheck(const DependentDiagnostic &DD, argument
1504 SourceLocation Loc = DD.getAccessLoc();
1505 AccessSpecifier Access = DD.getAccess();
1507 Decl *NamingD = FindInstantiatedDecl(Loc, DD.getAccessNamingClass(),
1510 Decl *TargetD = FindInstantiatedDecl(Loc, DD.getAccessTarget(),
1514 if (DD
[all...]
/freebsd-10.2-release/contrib/compiler-rt/lib/ppc/
H A Dmultc3.c5 #include "DD.h"
32 DD real = { .ld = __gcc_qsub(ac,bd) };
33 DD imag = { .ld = __gcc_qadd(ad,bc) };
39 DD aDD = { .ld = a };
40 DD bDD = { .ld = b };
41 DD cDD = { .ld = c };
42 DD dDD = { .ld = d };
64 DD acDD = { .ld = ac };
65 DD bdDD = { .ld = bd };
66 DD adD
[all...]
H A Dfloatditf.c8 #include "DD.h"
29 DD result;
H A Dfloatunditf.c8 #include "DD.h"
34 DD result;
H A Ddivtc3.c5 #include "DD.h"
25 DD cDD = { .ld = c };
26 DD dDD = { .ld = d };
45 DD real = { .ld = __gcc_qdiv(realNumerator, denom) };
46 DD imag = { .ld = __gcc_qdiv(imagNumerator, denom) };
55 DD aDD = { .ld = a };
56 DD bDD = { .ld = b };
57 DD rDD = { .ld = denom };
H A DDD.h12 }DD; typedef in typeref:union:__anon875
H A Dfixunstfdi.c8 #include "DD.h"
12 const DD x = { .ld = input };
H A Dgcc_qdiv.c10 #include "DD.h"
15 DD dst = { .ld = a }, src = { .ld = b };
H A Dgcc_qmul.c10 #include "DD.h"
15 DD dst = { .ld = x }, src = { .ld = y };
H A Dfixtfdi.c9 #include "DD.h"
14 const DD x = { .ld = input };
H A Dgcc_qadd.c10 #include "DD.h"
16 DD dst = { .ld = x }, src = { .ld = y };
H A Dgcc_qsub.c10 #include "DD.h"
16 DD dst = { .ld = x }, src = { .ld = y };
/freebsd-10.2-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DDelayedDiagnostic.h133 DelayedDiagnostic DD; local
134 DD.Kind = Access;
135 DD.Triggered = false;
136 DD.Loc = Loc;
137 new (&DD.getAccessData()) AccessedEntity(Entity);
138 return DD;
145 DelayedDiagnostic DD; local
146 DD.Kind = ForbiddenType;
147 DD.Triggered = false;
148 DD
204 struct DD { struct in class:clang::sema::DelayedDiagnostic
[all...]
/freebsd-10.2-release/contrib/llvm/tools/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;
H A DDeclFriend.h139 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(ND)) {
140 if (DD->getOuterLocStart() != DD->getInnerLocStart())
141 return DD->getSourceRange();
H A DVTableBuilder.h79 static VTableComponent MakeCompleteDtor(const CXXDestructorDecl *DD) { argument
81 reinterpret_cast<uintptr_t>(DD));
84 static VTableComponent MakeDeletingDtor(const CXXDestructorDecl *DD) { argument
86 reinterpret_cast<uintptr_t>(DD));
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCXX.cpp336 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD))
337 return BuildAppleKextVirtualDestructorCall(DD, Dtor_Complete, RD);
346 const CXXDestructorDecl *DD,
349 const CXXMethodDecl *MD = cast<CXXMethodDecl>(DD);
356 CGM.getTypes().arrangeCXXDestructor(DD, Dtor_Complete);
358 return ::BuildAppleKextVirtualCall(*this, GlobalDecl(DD, Type), Ty, RD);
345 BuildAppleKextVirtualDestructorCall( const CXXDestructorDecl *DD, CXXDtorType Type, const CXXRecordDecl *RD) argument
/freebsd-10.2-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp38 : UniqueID(UID), Node(Node), CUDie(D), Asm(A), DD(DW), DU(DWU),
115 return DD->getDIE(D);
124 DD->insertDIE(Desc, D);
132 if (DD->getDwarfVersion() >= 4)
177 if (!DD->useSplitDwarf()) {
234 if (DD->getDwarfVersion() >= 4)
244 if (DD->getDwarfVersion() >= 4)
256 DD->addArangeLabel(SymbolCU(this, Label));
258 if (!DD->useSplitDwarf()) {
277 DD
682 isTypeSigned(DwarfDebug *DD, DIType Ty, int *SizeInBits) argument
696 isUnsignedDIType(DwarfDebug *DD, DIType Ty) argument
713 getBaseTypeSize(DwarfDebug *DD, DIDerivedType Ty) argument
1137 isTypeUnitScoped(DIType Ty, const DwarfDebug *DD) argument
1149 shouldCreateTypeUnit(DICompositeType CTy, const DwarfDebug *DD) argument
[all...]
H A DDwarfDebug.h153 DwarfDebug *DD; member in class:llvm::DbgVariable
156 DbgVariable(DIVariable V, DbgVariable *AV, DwarfDebug *DD) argument
158 FrameIndex(~0), DD(DD) {}
272 void emitUnits(DwarfDebug *DD, const MCSection *USection,
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp231 if (CXXDestructorDecl *DD = RD->getDestructor())
232 if (Stmt *Body = DD->getBody()) {
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/AST/
H A DMangle.cpp203 void MangleContext::mangleDtorBlock(const CXXDestructorDecl *DD, argument
208 mangleCXXDtor(DD, DT, Out);
/freebsd-10.2-release/contrib/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
126 const DwarfDebug *getDwarfDebug() const { return DD; }
/freebsd-10.2-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DTransGCAttrs.cpp55 } else if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
56 lookForAttribute(DD, DD->getTypeSourceInfo());

Completed in 137 milliseconds

1234