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

  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 70 QualType::DestructionKind dtorKind = type.isDestructedType();
72 switch (dtorKind) {
112 .generateDestroyHelper(addr, type, CGF.getDestroyer(dtorKind),
113 CGF.needsEHCleanup(dtorKind), &D);
CGBlocks.cpp 598 QualType::DestructionKind dtorKind =
600 if (dtorKind == QualType::DK_none) continue;
606 if (dtorKind == QualType::DK_objc_strong_lifetime) {
609 destroyer = CGF.getDestroyer(dtorKind);
622 bool useArrayEHCleanup = CGF.needsEHCleanup(dtorKind);
    [all...]
CGExprAgg.cpp 423 QualType::DestructionKind dtorKind = elementType.isDestructedType();
427 if (CGF.needsEHCleanup(dtorKind)) {
437 CGF.getDestroyer(dtorKind));
442 dtorKind = QualType::DK_none;
531 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
    [all...]
CGObjC.cpp     [all...]
CGClass.cpp 740 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
741 if (CGF.needsEHCleanup(dtorKind))
742 CGF.pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
798 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
799 if (needsEHCleanup(dtorKind))
800 pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
    [all...]

Completed in 115 milliseconds