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

  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 64 QualType::DestructionKind dtorKind = type.isDestructedType();
66 switch (dtorKind) {
85 if (dtorKind == QualType::DK_cxx_destructor &&
96 CGF.getDestroyer(dtorKind),
97 CGF.needsEHCleanup(dtorKind));
CGExprAgg.cpp 308 QualType::DestructionKind dtorKind = arrayType.isDestructedType();
309 if (!dtorKind)
311 if (dtorKind != QualType::DK_cxx_destructor) {
316 CodeGenFunction::Destroyer *destroyer = CGF.getDestroyer(dtorKind);
399 QualType::DestructionKind dtorKind = elementType.isDestructedType();
403 if (CGF.needsEHCleanup(dtorKind)) {
412 CGF.getDestroyer(dtorKind));
417 dtorKind = QualType::DK_none;
517 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
    [all...]
CGDecl.cpp     [all...]
CGExprCXX.cpp     [all...]
CGClass.cpp     [all...]
CGBlocks.cpp 535 QualType::DestructionKind dtorKind =
537 if (dtorKind == QualType::DK_none) continue;
543 if (dtorKind == QualType::DK_objc_strong_lifetime) {
546 destroyer = CGF.getDestroyer(dtorKind);
558 bool useArrayEHCleanup = CGF.needsEHCleanup(dtorKind);
    [all...]
CGObjC.cpp     [all...]
CGCall.cpp 218 CXXDtorType dtorKind) {
223 TheCXXABI.BuildDestructorSignature(D, dtorKind, resultType, argTypes);
    [all...]
CodeGenFunction.h     [all...]

Completed in 324 milliseconds