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

  /external/clang/lib/CodeGen/
CGDecl.cpp     [all...]
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...]
CGClass.cpp 642 QualType::DestructionKind dtorKind = FieldType.isDestructedType();
643 if (needsEHCleanup(dtorKind))
644 pushEHDestroy(dtorKind, LHS.getAddress(), FieldType);
    [all...]
CGExprCXX.cpp     [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...]
CGObjC.cpp     [all...]
CodeGenFunction.h     [all...]
CGCall.cpp 228 CXXDtorType dtorKind) {
232 GlobalDecl GD(D, dtorKind);
236 TheCXXABI.BuildDestructorSignature(D, dtorKind, resultType, argTypes);
    [all...]

Completed in 326 milliseconds