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

  /external/clang/lib/CodeGen/
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...]
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));
CGDecl.cpp     [all...]
CGExprCXX.cpp 808 QualType::DestructionKind dtorKind = elementType.isDestructedType();
816 if (needsEHCleanup(dtorKind)) {
824 getDestroyer(dtorKind));
    [all...]
CGClass.cpp     [all...]
CGBlocks.cpp 531 QualType::DestructionKind dtorKind =
533 if (dtorKind == QualType::DK_none) continue;
539 if (dtorKind == QualType::DK_objc_strong_lifetime) {
542 destroyer = CGF.getDestroyer(dtorKind);
554 bool useArrayEHCleanup = CGF.needsEHCleanup(dtorKind);
    [all...]
CGObjC.cpp     [all...]
CGCall.cpp 187 CXXDtorType dtorKind) {
192 TheCXXABI.BuildDestructorSignature(D, dtorKind, resultType, argTypes);
    [all...]
CodeGenFunction.h     [all...]

Completed in 768 milliseconds