HomeSort by: relevance | last modified time | path
    Searched defs:DtorType (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGClass.cpp 1444 CXXDtorType DtorType = CurGD.getDtorType();
1451 if (DtorType != Dtor_Base && Dtor->getParent()->isAbstract()) {
1468 if (DtorType == Dtor_Deleting) {
1494 switch (DtorType) {
1795 CXXDtorType DtorType) {
1801 if (DtorType == Dtor_Deleting) {
1834 if (DtorType == Dtor_Complete) {
1860 assert(DtorType == Dtor_Base);
ItaniumCXXABI.cpp 277 CXXDtorType DtorType, Address This,
1274 CXXDtorType DtorType = UseGlobalDelete ? Dtor_Complete : Dtor_Deleting;
1275 EmitVirtualDestructorCall(CGF, Dtor, DtorType, Ptr, DE);
1998 CodeGenFunction &CGF, const CXXDestructorDecl *Dtor, CXXDtorType DtorType,
2004 assert(DtorType == Dtor_Deleting || DtorType == Dtor_Complete);
2006 GlobalDecl GD(Dtor, DtorType);
MicrosoftCXXABI.cpp 314 CXXDtorType DtorType, Address This,
874 CXXDtorType DtorType = UseGlobalDelete ? Dtor_Complete : Dtor_Deleting;
875 llvm::Value *MDThis = EmitVirtualDestructorCall(CGF, Dtor, DtorType, Ptr, DE);
1963 CodeGenFunction &CGF, const CXXDestructorDecl *Dtor, CXXDtorType DtorType,
1969 assert(DtorType == Dtor_Deleting || DtorType == Dtor_Complete);
1982 DtorType == Dtor_Deleting);

Completed in 30 milliseconds