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

1234

/freebsd-10.0-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 DSemaAccess.cpp1479 void Sema::HandleDelayedAccessCheck(DelayedDiagnostic &DD, Decl *D) { argument
1495 AccessTarget Target(DD.getAccessData());
1497 if (CheckEffectiveAccess(*this, EC, DD.Loc, Target) == ::AR_inaccessible)
1498 DD.Triggered = true;
1501 void Sema::HandleDependentAccessCheck(const DependentDiagnostic &DD, argument
1503 SourceLocation Loc = DD.getAccessLoc();
1504 AccessSpecifier Access = DD.getAccess();
1506 Decl *NamingD = FindInstantiatedDecl(Loc, DD.getAccessNamingClass(),
1509 Decl *TargetD = FindInstantiatedDecl(Loc, DD.getAccessTarget(),
1513 if (DD
[all...]
/freebsd-10.0-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:__anon789
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.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DDelayedDiagnostic.h132 DelayedDiagnostic DD; local
133 DD.Kind = Access;
134 DD.Triggered = false;
135 DD.Loc = Loc;
136 new (&DD.getAccessData()) AccessedEntity(Entity);
137 return DD;
144 DelayedDiagnostic DD; local
145 DD.Kind = ForbiddenType;
146 DD.Triggered = false;
147 DD
203 struct DD { struct in class:clang::sema::DelayedDiagnostic
[all...]
/freebsd-10.0-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.h76 static VTableComponent MakeCompleteDtor(const CXXDestructorDecl *DD) { argument
78 reinterpret_cast<uintptr_t>(DD));
81 static VTableComponent MakeDeletingDtor(const CXXDestructorDecl *DD) { argument
83 reinterpret_cast<uintptr_t>(DD));
H A DMangle.h104 virtual void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type,
/freebsd-10.0-release/contrib/gcc/
H A Dmachmode.def195 DECIMAL_FLOAT_MODE (DD, 8, decimal_double_format);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGCXX.cpp331 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD))
332 return BuildAppleKextVirtualDestructorCall(DD, Dtor_Complete, RD);
353 const CXXDestructorDecl *DD,
357 const CXXMethodDecl *MD = cast<CXXMethodDecl>(DD);
371 DD = cast<CXXDestructorDecl>(DD->getCanonicalDecl());
373 CGM.getVTableContext().getMethodVTableIndex(GlobalDecl(DD, Type));
386 CodeGenFunction::BuildVirtualCall(const CXXDestructorDecl *DD, CXXDtorType Type, argument
388 DD = cast<CXXDestructorDecl>(DD
352 BuildAppleKextVirtualDestructorCall( const CXXDestructorDecl *DD, CXXDtorType Type, const CXXRecordDecl *RD) argument
[all...]
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DMangle.cpp96 void MangleContext::mangleDtorBlock(const CXXDestructorDecl *DD, argument
99 checkMangleDC(DD, BD);
102 mangleCXXDtor(DD, DT, Out);
H A DVTableBuilder.cpp1297 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
1304 Components.push_back(VTableComponent::MakeCompleteDtor(DD));
1305 Components.push_back(VTableComponent::MakeDeletingDtor(DD));
1308 Components.push_back(VTableComponent::MakeDeletingDtor(DD));
1948 const CXXDestructorDecl *DD = Component.getDestructorDecl(); local
1950 Out << DD->getQualifiedNameAsString();
1958 if (DD->isPure())
2138 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
2141 IndicesMap[VTables.getMethodVTableIndex(GlobalDecl(DD, Dtor_Complete))]
2143 IndicesMap[VTables.getMethodVTableIndex(GlobalDecl(DD, Dtor_Deletin
[all...]
/freebsd-10.0-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.0-release/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfCompileUnit.cpp37 : UniqueID(UID), Language(L), CUDie(D), Asm(A), DD(DW), DU(DWU),
101 if (!DD->useDarwinGDBCompat())
133 if (!DD->useSplitDwarf()) {
178 if (!DD->useSplitDwarf()) {
198 if (!DD->useSplitDwarf()) {
243 unsigned FileID = DD->getOrCreateSourceID(V.getContext().getFilename(),
261 unsigned FileID = DD->getOrCreateSourceID(G.getFilename(), G.getDirectory(),
280 unsigned FileID = DD->getOrCreateSourceID(SP.getFilename(),
297 unsigned FileID = DD->getOrCreateSourceID(Ty.getFilename(),
315 unsigned FileID = DD
[all...]
/freebsd-10.0-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 112 milliseconds

1234