Lines Matching refs:aCell2

3488 sal_Bool ScXMLExport::IsCellTypeEqual (const ScMyCell& aCell1, const ScMyCell& aCell2) const  in IsCellTypeEqual()
3490 return (aCell1.nType == aCell2.nType); in IsCellTypeEqual()
3589 sal_Bool ScXMLExport::IsCellEqual (ScMyCell& aCell1, ScMyCell& aCell2) in IsCellEqual() argument
3594 ScUnoConversion::FillScAddress( aCellPos2, aCell2.aCellAddress ); in IsCellEqual()
3596 if( !aCell1.bIsMergedBase && !aCell2.bIsMergedBase && in IsCellEqual()
3597 aCell1.bIsCovered == aCell2.bIsCovered && in IsCellEqual()
3598 !aCell1.bIsMatrixBase && !aCell2.bIsMatrixBase && in IsCellEqual()
3599 aCell1.bIsMatrixCovered == aCell2.bIsMatrixCovered && in IsCellEqual()
3600 aCell1.bHasAnnotation == aCell2.bHasAnnotation && in IsCellEqual()
3601 !aCell1.bHasShape && !aCell2.bHasShape && in IsCellEqual()
3602 aCell1.bHasAreaLink == aCell2.bHasAreaLink && in IsCellEqual()
3603 !aCell1.bHasDetectiveObj && !aCell2.bHasDetectiveObj) in IsCellEqual()
3607 (aCell2.aAreaLink.GetColCount() == 1) && in IsCellEqual()
3608 aCell1.aAreaLink.Compare( aCell2.aAreaLink ) ) || in IsCellEqual()
3613 …if ((((aCell1.nStyleIndex == aCell2.nStyleIndex) && (aCell1.bIsAutoStyle == aCell2.bIsAutoStyle)) … in IsCellEqual()
3614 ((aCell1.nStyleIndex == aCell2.nStyleIndex) && (aCell1.nStyleIndex == -1))) && in IsCellEqual()
3615 (aCell1.nValidationIndex == aCell2.nValidationIndex) && in IsCellEqual()
3616 IsCellTypeEqual(aCell1, aCell2)) in IsCellEqual()
3632 if (!aCell2.bHasDoubleValue) in IsCellEqual()
3634 aCell2.fValue = pDoc->GetValue( aCellPos2 ); in IsCellEqual()
3635 aCell2.bHasDoubleValue = sal_True; in IsCellEqual()
3639 bIsEqual = (aCell1.nNumberFormat == aCell2.nNumberFormat) && in IsCellEqual()
3640 (aCell1.fValue == aCell2.fValue); in IsCellEqual()
3645 if (IsEditCell(aCell1) || IsEditCell(aCell2)) in IsCellEqual()
3649 if (GetCellText(aCell1, aCellPos1) && GetCellText(aCell2, aCellPos2)) in IsCellEqual()
3651 bIsEqual = (aCell1.sStringValue == aCell2.sStringValue) && in IsCellEqual()