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

  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 71 QualType::DestructionKind dtorKind = type.isDestructedType();
73 switch (dtorKind) {
93 if (dtorKind == QualType::DK_cxx_destructor &&
104 CGF.getDestroyer(dtorKind),
105 CGF.needsEHCleanup(dtorKind));
CGExprAgg.cpp 391 QualType::DestructionKind dtorKind = elementType.isDestructedType();
395 if (CGF.needsEHCleanup(dtorKind)) {
404 CGF.getDestroyer(dtorKind));
409 dtorKind = QualType::DK_none;
502 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
    [all...]
CGBlocks.cpp 596 QualType::DestructionKind dtorKind =
598 if (dtorKind == QualType::DK_none) continue;
604 if (dtorKind == QualType::DK_objc_strong_lifetime) {
607 destroyer = CGF.getDestroyer(dtorKind);
619 bool useArrayEHCleanup = CGF.needsEHCleanup(dtorKind);
    [all...]
CGExprCXX.cpp     [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 229 milliseconds