Searched defs:DD (Results 26 - 47 of 47) sorted by relevance

12

/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h668 /// \param DD The destructor that will be called.
673 CXXDestructorCall(const CXXDestructorDecl *DD, const Stmt *Trigger, argument
676 : CXXInstanceCall(DD, St, LCtx) {
986 getCXXDestructorCall(const CXXDestructorDecl *DD, const Stmt *Trigger, argument
989 return create<CXXDestructorCall>(DD, Trigger, Target, IsBase, State, LCtx);
/external/clang/lib/AST/
H A DDeclBase.cpp1548 DependentDiagnostic *DD = new (C) DependentDiagnostic(PDiag, DiagStorage); local
1551 DD->NextDiagnostic = Map->FirstDiagnostic;
1552 Map->FirstDiagnostic = DD;
1554 return DD;
H A DMicrosoftMangle.cpp152 virtual void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type,
1821 void MicrosoftMangleContext::mangleCXXDtorThunk(const CXXDestructorDecl *DD, argument
1827 getDiags().Report(DD->getLocation(), DiagID);
H A DVTableBuilder.cpp1325 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
1332 Components.push_back(VTableComponent::MakeCompleteDtor(DD));
1333 Components.push_back(VTableComponent::MakeDeletingDtor(DD));
1336 Components.push_back(VTableComponent::MakeDeletingDtor(DD));
1589 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
1597 ImplicitVirtualDtor = DD;
1724 if (const CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(MD)) {
1727 MethodVTableIndices[GlobalDecl(DD, Dtor_Complete)]
1729 MethodVTableIndices[GlobalDecl(DD, Dtor_Deleting)]
1732 MethodVTableIndices[GlobalDecl(DD, Dtor_Deletin
2042 const CXXDestructorDecl *DD = Component.getDestructorDecl(); local
2978 const CXXDestructorDecl *DD = Component.getDestructorDecl(); local
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporterVisitors.cpp325 if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(DR->getDecl()))
326 Out << " (loaded from '" << *DD << "')"; local
/external/clang/test/CXX/drs/
H A Ddr1xx.cpp487 class DD : public D { class in namespace:dr142
490 void DD::f() {
/external/qemu/android/avd/
H A Dinfo.c35 #define DD(...) VERBOSE_PRINT(avd_config,__VA_ARGS__) macro
228 DD(" found image search path: %s", path);
304 DD("Probing skin directory: %s", temp);
306 DD(" ignore bad skin directory %s", temp);
313 DD(" found skin directory: %s", temp);
334 DD(" skin alias '%s' points to skin directory: %s",
496 DD("Found target field in root AVD .ini file: '%s'", target);
612 DD("found a total of %d search paths for this AVD", i->numSearchPaths);
632 DD("found %s in search dir: %s", fileName, searchDir);
635 DD(" n
[all...]
/external/qemu/hw/
H A Dgoldfish_pipe.c31 # define DD(...) fprintf(stderr, __VA_ARGS__), fprintf(stderr, "\n") macro
33 # define DD(...) (void)0 macro
353 DD("%s: channel=0x%x numBuffers=%d", __FUNCTION__,
360 DD("%s: buffer data (%3d bytes): '%.*s'", __FUNCTION__,
822 DD("%s: sendExpiration=%lld recvExpiration=%lld\n", __FUNCTION__, pipe->sendExpiration, pipe->recvExpiration);
835 DD("%s: Arming for %lld\n", __FUNCTION__, minExpiration);
846 DD("%s: TICK! now=%lld sendExpiration=%lld recvExpiration=%lld\n",
862 DD("%s: WAKE %d\n", __FUNCTION__, flags);
985 DD("%s: CMD_OPEN channel=0x%x", __FUNCTION__, dev->channel);
997 DD("
[all...]
/external/clang/lib/Sema/
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...]
H A DSemaTemplateInstantiateDecl.cpp4301 DependentDiagnostic *DD = *I; local
4303 switch (DD->getKind()) {
4305 HandleDependentAccessCheck(*DD, TemplateArgs);
H A DSemaDeclAttr.cpp5335 void Sema::HandleDelayedDeprecationCheck(DelayedDiagnostic &DD, argument
5340 DD.Triggered = true;
5341 DoEmitDeprecationWarning(*this, DD.getDeprecationDecl(),
5342 DD.getDeprecationMessage(), DD.Loc,
5343 DD.getUnknownObjCClass(),
5344 DD.getObjCProperty());
H A DSemaLookup.cpp2401 CXXDestructorDecl *DD = RD->getDestructor(); local
2402 assert(DD && "record without a destructor");
2403 Result->setMethod(DD);
2404 Result->setKind(DD->isDeleted() ?
H A DSemaDecl.cpp4620 static void SetNestedNameSpecifier(DeclaratorDecl *DD, Declarator &D) { argument
4623 DD->setQualifierInfo(SS.getWithLocInContext(DD->getASTContext()));
/external/llvm/lib/Analysis/
H A DInstructionSimplify.cpp212 Value *DD = A == C ? D : C; local
213 // Form "A op' (B op DD)" if it simplifies completely.
214 // Does "B op DD" simplify?
215 if (Value *V = SimplifyBinOp(Opcode, B, DD, Q, MaxRecurse)) {
217 // If V equals B then "A op' V" is just the LHS. If V equals DD then
219 if (V == B || V == DD) {
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86BaseInfo.h331 DC = 7 << Op0Shift, DD = 8 << Op0Shift, enumerator in enum:llvm::X86II::__anon22466
/external/clang/lib/Analysis/
H A DCFG.cpp437 void addImplicitDtorsForDestructor(const CXXDestructorDecl *DD);
650 if (const CXXDestructorDecl *DD = dyn_cast_or_null<CXXDestructorDecl>(D))
651 addImplicitDtorsForDestructor(DD);
859 void CFGBuilder::addImplicitDtorsForDestructor(const CXXDestructorDecl *DD) { argument
862 const CXXRecordDecl *RD = DD->getParent();
3416 if (const CXXDestructorDecl *DD = getDestructorDecl(astContext))
3417 return DD->isNoReturn();
H A DThreadSafety.cpp2514 CXXDestructorDecl *DD = const_cast<CXXDestructorDecl *>( local
2516 if (!DD->hasAttrs())
2523 LocksetBuilder.handleCall(&DRE, DD);
/external/clang/lib/CodeGen/
H A DCGClass.cpp1405 void CodeGenFunction::EnterDtorCleanups(const CXXDestructorDecl *DD, argument
1407 assert(!DD->isTrivial() &&
1413 assert(DD->getOperatorDelete() &&
1426 const CXXRecordDecl *ClassDecl = DD->getParent();
1799 void CodeGenFunction::EmitCXXDestructorCall(const CXXDestructorDecl *DD, argument
1804 llvm::Value *VTT = GetVTTParameter(GlobalDecl(DD, Type),
1808 Callee = BuildAppleKextVirtualDestructorCall(DD, Type,
1809 DD->getParent());
1812 Callee = CGM.GetAddrOfCXXDestructor(DD, Type);
1815 EmitCXXMemberCall(DD, SourceLocatio
[all...]
/external/clang/lib/Serialization/
H A DASTReaderDecl.cpp253 void VisitDeclaratorDecl(DeclaratorDecl *DD);
320 if (DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
321 if (DD->DeclInfo) {
323 DD->DeclInfo.get<DeclaratorDecl::ExtInfo *>();
328 DD->DeclInfo = GetTypeSourceInfo(Record, Idx);
512 void ASTDeclReader::VisitDeclaratorDecl(DeclaratorDecl *DD) { argument
513 VisitValueDecl(DD);
514 DD->setInnerLocStart(ReadSourceLocation(Record, Idx));
519 DD->DeclInfo = Info;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp2129 void DwarfUnits::emitUnits(DwarfDebug *DD, argument
2153 Asm->EmitInt16(DD->getDwarfVersion());
2160 DD->emitDIE(Die, Abbreviations);
/external/clang/tools/libclang/
H A DCIndex.cpp728 bool CursorVisitor::VisitDeclaratorDecl(DeclaratorDecl *DD) { argument
729 unsigned NumParamList = DD->getNumTemplateParameterLists();
731 TemplateParameterList* Params = DD->getTemplateParameterList(i);
736 if (TypeSourceInfo *TSInfo = DD->getTypeSourceInfo())
741 if (NestedNameSpecifierLoc QualifierLoc = DD->getQualifierLoc())
3875 } else if (const DeclaratorDecl *DD
3877 SourceLocation StartLoc = DD->getSourceRange().getBegin();
4343 if (const DeclaratorDecl *DD = dyn_cast<DeclaratorDecl>(D)) {
4344 if (TypeSourceInfo *TI = DD->getTypeSourceInfo())
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...

Completed in 1563 milliseconds

12