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 72 QualType::DestructionKind dtorKind = type.isDestructedType();
74 switch (dtorKind) {
94 if (dtorKind == QualType::DK_cxx_destructor &&
106 .generateDestroyHelper(addr, type, CGF.getDestroyer(dtorKind),
107 CGF.needsEHCleanup(dtorKind), &D);
CGExprAgg.cpp 414 QualType::DestructionKind dtorKind = elementType.isDestructedType();
418 if (CGF.needsEHCleanup(dtorKind)) {
427 CGF.getDestroyer(dtorKind));
432 dtorKind = QualType::DK_none;
519 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
    [all...]
CGBlocks.cpp 593 QualType::DestructionKind dtorKind =
595 if (dtorKind == QualType::DK_none) continue;
601 if (dtorKind == QualType::DK_objc_strong_lifetime) {
604 destroyer = CGF.getDestroyer(dtorKind);
616 bool useArrayEHCleanup = CGF.needsEHCleanup(dtorKind);
    [all...]
CGClass.cpp 642 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
643 if (needsEHCleanup(dtorKind))
644 pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
    [all...]
CGObjC.cpp     [all...]

Completed in 47 milliseconds