HomeSort by relevance Sort by last modified time
    Searched refs:CXXDestructorDecl (Results 1 - 25 of 78) sorted by null

1 2 3 4

  /external/clang/include/clang/AST/
GlobalDecl.h 26 /// a CXXDestructorDecl and the destructor type (Base, Complete) or
33 assert(!isa<CXXDestructorDecl>(D) && "Use other ctor with dtor decls!");
49 GlobalDecl(const CXXDestructorDecl *D, CXXDtorType Type)
68 assert(isa<CXXDestructorDecl>(getDecl()) && "Decl is not a dtor!");
VTableBuilder.h 73 assert(!isa<CXXDestructorDecl>(MD) &&
80 static VTableComponent MakeCompleteDtor(const CXXDestructorDecl *DD) {
85 static VTableComponent MakeDeletingDtor(const CXXDestructorDecl *DD) {
91 assert(!isa<CXXDestructorDecl>(MD) &&
136 const CXXDestructorDecl *getDestructorDecl() const {
140 return reinterpret_cast<CXXDestructorDecl *>(getPointer());
525 if (isa<CXXDestructorDecl>(GD.getDecl()) &&
Mangle.h 29 class CXXDestructorDecl;
102 virtual void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type,
112 virtual void mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type,
121 void mangleDtorBlock(const CXXDestructorDecl *CD, CXXDtorType DT,
DeclCXX.h 36 class CXXDestructorDecl;
    [all...]
ExprCXX.h 30 class CXXDestructorDecl;
    [all...]
  /external/clang/lib/CodeGen/
CGCXX.cpp 33 bool CodeGenModule::TryEmitBaseDestructorAsAlias(const CXXDestructorDecl *D) {
99 const CXXDestructorDecl *BaseD = UniqueBase->getDestructor();
248 void CodeGenModule::EmitCXXDestructor(const CXXDestructorDecl *dtor,
286 CodeGenModule::GetAddrOfCXXDestructor(const CXXDestructorDecl *dtor,
344 if (const auto *DD = dyn_cast<CXXDestructorDecl>(MD))
354 const CXXDestructorDecl *DD,
CGCXXABI.h 30 class CXXDestructorDecl;
270 virtual void BuildDestructorSignature(const CXXDestructorDecl *Dtor,
278 virtual bool useThunkForDtorVariant(const CXXDestructorDecl *Dtor,
282 virtual void EmitCXXDestructors(const CXXDestructorDecl *D) = 0;
337 const CXXDestructorDecl *DD, CXXDtorType Type,
372 const CXXDestructorDecl *Dtor,
CodeGenTypes.h 38 class CXXDestructorDecl;
195 const CGFunctionInfo &arrangeCXXDestructor(const CXXDestructorDecl *D,
CGClass.cpp 349 const CXXDestructorDecl *D = BaseClass->getDestructor();
    [all...]
CGVTables.cpp 42 if (const CXXDestructorDecl* DD = dyn_cast<CXXDestructorDecl>(MD))
215 if (isa<CXXDestructorDecl>(MD))
244 if (isa<CXXDestructorDecl>(MD))
261 assert(isa<CXXDestructorDecl>(MD) || // ignore dtor return types
421 if (isa<CXXDestructorDecl>(MD) && GD.getDtorType() == Dtor_Base)
CodeGenModule.h 73 class CXXDestructorDecl;
654 else if (isa<CXXDestructorDecl>(GD.getDecl()))
655 return GetAddrOfCXXDestructor(cast<CXXDestructorDecl>(GD.getDecl()),
798 GetAddrOfCXXDestructor(const CXXDestructorDecl *dtor,
    [all...]
CGExprCXX.cpp 135 if (isa<CXXDestructorDecl>(MD)) return RValue::get(nullptr);
162 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(CalleeDecl))
182 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD)) {
197 const CXXDestructorDecl *DDtor =
198 cast<CXXDestructorDecl>(DevirtualizedMethod);
    [all...]
MicrosoftCXXABI.cpp 139 void BuildDestructorSignature(const CXXDestructorDecl *Dtor,
145 bool useThunkForDtorVariant(const CXXDestructorDecl *Dtor,
150 void EmitCXXDestructors(const CXXDestructorDecl *D) override;
155 if (MD->isVirtual() && !isa<CXXDestructorDecl>(MD)) {
189 void EmitDestructorCall(CodeGenFunction &CGF, const CXXDestructorDecl *DD,
213 const CXXDestructorDecl *Dtor,
    [all...]
ItaniumCXXABI.cpp 147 void BuildDestructorSignature(const CXXDestructorDecl *Dtor,
151 bool useThunkForDtorVariant(const CXXDestructorDecl *Dtor,
159 void EmitCXXDestructors(const CXXDestructorDecl *D) override;
172 void EmitDestructorCall(CodeGenFunction &CGF, const CXXDestructorDecl *DD,
196 const CXXDestructorDecl *Dtor,
286 isa<CXXDestructorDecl>(GD.getDecl()) &&
    [all...]
CodeGenModule.cpp 540 else if (const auto *D = dyn_cast<CXXDestructorDecl>(ND))
568 else if (const auto *DD = dyn_cast<CXXDestructorDecl>(D))
634 if (isa<CXXDestructorDecl>(D) &&
635 getCXXABI().useThunkForDtorVariant(cast<CXXDestructorDecl>(D),
749 if (isa<CXXConstructorDecl>(D) || isa<CXXDestructorDecl>(D))
855 if (const auto *Dtor = dyn_cast_or_null<CXXDestructorDecl>(FD)) {
    [all...]
  /external/chromium_org/tools/clang/plugins/
FindBadConstructsConsumer.cpp 244 } else if (CXXDestructorDecl* dtor = record->getDestructor()) {
260 if (isa<CXXDestructorDecl>(method))
308 if (isa<CXXDestructorDecl>(method) || method->isPure())
363 } else if (isa<CXXDestructorDecl>(*it) &&
447 if (CXXDestructorDecl* dtor = record->getDestructor()) {
571 if (CXXDestructorDecl* dtor =
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 63 void handleDestructorCall(const VarDecl *VD, const CXXDestructorDecl *DD) {}
153 CXXDestructorDecl *DD = const_cast<CXXDestructorDecl*>(
340 void handleDestructorCall(const VarDecl *VD, const CXXDestructorDecl *DD);
  /external/clang/lib/AST/
Mangle.cpp 199 void MangleContext::mangleDtorBlock(const CXXDestructorDecl *DD,
211 assert(!isa<CXXConstructorDecl>(DC) && !isa<CXXDestructorDecl>(DC));
DeclCXX.cpp 536 if (CXXDestructorDecl *DD = dyn_cast<CXXDestructorDecl>(D)) {
    [all...]
VTableBuilder.cpp 497 if (isa<CXXDestructorDecl>(LHS))
498 return isa<CXXDestructorDecl>(RHS);
    [all...]
MicrosoftMangle.cpp 104 void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type,
130 void mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type,
215 const CXXDestructorDecl *D, CXXDtorType Type)
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
VirtualCallChecker.cpp 228 if (CXXDestructorDecl *DD = RD->getDestructor())
DynamicTypePropagation.cpp 99 recordFixedType(Target, cast<CXXDestructorDecl>(D), C);
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 157 if (!isa<CXXDestructorDecl>(Decl) &&
168 return isa<CXXDestructorDecl>(Decl);
775 if (getLangOpts().CPlusPlus11 && isa<CXXDestructorDecl>(New)) {
784 cast<CXXDestructorDecl>(New), cast<CXXDestructorDecl>(Old)));
    [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 332 const CXXDestructorDecl* D = cast<CXXDestructorDecl>(DC);

Completed in 2161 milliseconds

1 2 3 4