HomeSort by relevance Sort by last modified time
    Searched refs:Dtor (Results 1 - 20 of 20) sorted by null

  /external/clang/test/CXX/class/class.union/
p1.cpp 35 class Dtor {
36 ~Dtor() { abort(); } // expected-note 4 {{because type 'Dtor' has a user-declared destructor}}
47 Dtor dtor; // expected-error {{union member 'dtor' has a non-trivial destructor}} member in union:U1
71 Dtor dtor; // expected-note {{because type 'U2::<anonymous struct}} member in struct:U2::__anon5118
91 struct s6 : Dtor { // expected-note {{because type 'U3::s6' has a base class with a non-trivial destructor}}
123 Either<int,Dtor> dtor(0); // expected-note {{in instantiation of template}
    [all...]
  /external/clang/lib/CodeGen/
CGClass.cpp 291 // If the record matches the base, this is the complete ctor/dtor
295 "doing no-op VTT offset in base dtor/ctor?");
526 CXXDestructorDecl *Dtor;
528 CallMemberDtor(llvm::Value *V, CXXDestructorDecl *Dtor)
529 : V(V), Dtor(Dtor) {}
532 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete, /*ForVirtualBase=*/false,
863 const CXXDestructorDecl *Dtor) {
864 if (!Dtor->hasTrivialBody())
868 const CXXRecordDecl *ClassDecl = Dtor->getParent()
1215 const CXXDestructorDecl *dtor = record->getDestructor(); local
    [all...]
CGCXXABI.h 172 virtual void BuildDestructorSignature(const CXXDestructorDecl *Dtor,
CGExprCXX.cpp 255 if (const CXXDestructorDecl *Dtor = dyn_cast<CXXDestructorDecl>(MD)) {
257 Callee = BuildVirtualCall(Dtor, Dtor_Complete, This, Ty);
264 Callee = CGM.GetAddrOfFunction(GlobalDecl(Dtor, Dtor_Complete), Ty);
    [all...]
CGException.cpp 443 llvm::Constant *Dtor = 0;
448 Dtor = CGM.GetAddrOfCXXDestructor(DtorD, Dtor_Complete);
449 Dtor = llvm::ConstantExpr::getBitCast(Dtor, Int8PtrTy);
452 if (!Dtor) Dtor = llvm::Constant::getNullValue(Int8PtrTy);
458 ExceptionPtr, TypeInfo, Dtor);
462 Builder.CreateCall3(getThrowFn(*this), ExceptionPtr, TypeInfo, Dtor);
    [all...]
ItaniumCXXABI.cpp 103 void BuildDestructorSignature(const CXXDestructorDecl *Dtor,
138 void BuildDestructorSignature(const CXXDestructorDecl *Dtor,
706 void ItaniumCXXABI::BuildDestructorSignature(const CXXDestructorDecl *Dtor,
715 if (Type == Dtor_Base && Dtor->getParent()->getNumVBases() != 0)
721 void ARMCXXABI::BuildDestructorSignature(const CXXDestructorDecl *Dtor,
725 ItaniumCXXABI::BuildDestructorSignature(Dtor, Type, ResTy, ArgTys);
    [all...]
CGDecl.cpp 359 const CXXDestructorDecl *Dtor,
361 : Dtor(Dtor), NRVOFlag(NRVOFlag), Loc(addr) {}
363 const CXXDestructorDecl *Dtor;
368 // Along the exceptions path we always execute the dtor.
381 CGF.EmitCXXDestructorCall(Dtor, Dtor_Complete,
1135 CXXDestructorDecl *dtor = type->getAsCXXRecordDecl()->getDestructor(); local
    [all...]
CodeGenModule.h 656 llvm::GlobalValue *GetAddrOfCXXDestructor(const CXXDestructorDecl *dtor,
    [all...]
CodeGenFunction.h 344 /// struct A { ~A(); }; // trivial ctor, non-trivial dtor
758 void PushDestructorCleanup(const CXXDestructorDecl *Dtor,
    [all...]
CodeGenModule.cpp 380 void CodeGenModule::AddGlobalDtor(llvm::Function * Dtor, int Priority) {
382 GlobalDtors.push_back(std::make_pair(Dtor, Priority));
    [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp     [all...]
SemaDeclCXX.cpp 3723 CXXDestructorDecl *dtor = Record->getDestructor(); local
    [all...]
SemaType.cpp     [all...]
SemaExprCXX.cpp 2150 CXXDestructorDecl *dtor = PointeeRD->getDestructor(); local
    [all...]
SemaDecl.cpp     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngine.cpp 389 // which are processed in the builder's dtor.
427 llvm_unreachable("Unexpected dtor kind.");
434 void ExprEngine::ProcessAutomaticObjDtor(const CFGAutomaticObjDtor Dtor,
438 const VarDecl *varDecl = Dtor.getVarDecl();
452 Dtor.getTriggerStmt(), Pred, Dst);
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp 663 // C++11 [class.dtor]p5:
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 782 const CXXDestructorDecl *Dtor = Ty->getAsCXXRecordDecl()->getDestructor();
783 if (cast<FunctionType>(Dtor->getType())->getNoReturnAttr())
    [all...]
  /external/clang/include/clang/AST/
ExprCXX.h 801 void setDestructor(const CXXDestructorDecl *Dtor) {
802 Destructor = Dtor;
    [all...]
  /external/clang/include/clang/Sema/
Sema.h 815 // This seems wasteful, in that as written the DiagnosticBuilder dtor will
    [all...]

Completed in 265 milliseconds