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 71 QualType::DestructionKind dtorKind = type.isDestructedType();
73 switch (dtorKind) {
92 if (dtorKind == QualType::DK_cxx_destructor &&
103 CGF.getDestroyer(dtorKind),
104 CGF.needsEHCleanup(dtorKind));
CGDecl.cpp     [all...]
CGExprAgg.cpp 356 QualType::DestructionKind dtorKind = arrayType.isDestructedType();
357 if (!dtorKind)
359 if (dtorKind != QualType::DK_cxx_destructor) {
364 CodeGenFunction::Destroyer *destroyer = CGF.getDestroyer(dtorKind);
447 QualType::DestructionKind dtorKind = elementType.isDestructedType();
451 if (CGF.needsEHCleanup(dtorKind)) {
460 CGF.getDestroyer(dtorKind));
465 dtorKind = QualType::DK_none;
565 if (dtorKind) CGF.DeactivateCleanupBlock(cleanup, cleanupDominator);
    [all...]
CGClass.cpp 652 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
653 if (needsEHCleanup(dtorKind))
654 pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
    [all...]
CGExprCXX.cpp     [all...]
CGBlocks.cpp 599 QualType::DestructionKind dtorKind =
601 if (dtorKind == QualType::DK_none) continue;
607 if (dtorKind == QualType::DK_objc_strong_lifetime) {
610 destroyer = CGF.getDestroyer(dtorKind);
622 bool useArrayEHCleanup = CGF.needsEHCleanup(dtorKind);
    [all...]
CGObjC.cpp     [all...]
CodeGenFunction.h     [all...]
CGCall.cpp 227 CXXDtorType dtorKind) {
232 TheCXXABI.BuildDestructorSignature(D, dtorKind, resultType, argTypes);
    [all...]

Completed in 492 milliseconds