Lines Matching refs:aCell

1794                         ScMyCell aCell;  in _ExportContent()  local
1796 while(pCellsItr->GetNext(aCell, pCellStyles)) in _ExportContent()
1800 … ExportFormatRanges(0, 0, aCell.aCellAddress.Column - 1, aCell.aCellAddress.Row, nTable); in _ExportContent()
1801 aPrevCell = aCell; in _ExportContent()
1806 if ((aPrevCell.aCellAddress.Row == aCell.aCellAddress.Row) && in _ExportContent()
1807 … (aPrevCell.aCellAddress.Column + nEqualCells + 1 == aCell.aCellAddress.Column)) in _ExportContent()
1809 if(IsCellEqual(aPrevCell, aCell)) in _ExportContent()
1815 aPrevCell = aCell; in _ExportContent()
1822aCell.aCellAddress.Column - 1, aCell.aCellAddress.Row, nTable); in _ExportContent()
1824 aPrevCell = aCell; in _ExportContent()
2810 sal_Bool ScXMLExport::IsMatrix (const ScAddress& aCell, in IsMatrix() argument
2817 if (pDoc && pDoc->GetMatrixFormulaRange(aCell, aMatrixRange)) in IsMatrix()
2820 if ((aCellAddress.StartColumn == aCell.Col() && aCellAddress.StartRow == aCell.Row()) && in IsMatrix()
2821 (aCellAddress.EndColumn > aCell.Col() || aCellAddress.EndRow > aCell.Row())) in IsMatrix()
2826 else if (aCellAddress.StartColumn != aCell.Col() || aCellAddress.StartRow != aCell.Row() || in IsMatrix()
2827 aCellAddress.EndColumn != aCell.Col() || aCellAddress.EndRow != aCell.Row()) in IsMatrix()
2897 void ScXMLExport::WriteCell(ScMyCell& aCell, sal_Int32 nEqualCellCount) in WriteCell() argument
2900 SetRepeatAttribute(nEqualCellCount, (aCell.nType != table::CellContentType_EMPTY)); in WriteCell()
2903 ScUnoConversion::FillScAddress( aCellPos, aCell.aCellAddress ); in WriteCell()
2904 if (aCell.nStyleIndex != -1) in WriteCell()
2905 …AddAttribute(sAttrStyleName, *pCellStyles->GetStyleNameByIndex(aCell.nStyleIndex, aCell.bIsAutoSty… in WriteCell()
2906 if (aCell.nValidationIndex > -1) in WriteCell()
2907 …LE, XML_CONTENT_VALIDATION_NAME, pValidationsContainer->GetValidationName(aCell.nValidationIndex)); in WriteCell()
2908 sal_Bool bIsMatrix(aCell.bIsMatrixBase || aCell.bIsMatrixCovered); in WriteCell()
2909 sal_Bool bIsFirstMatrixCell(aCell.bIsMatrixBase); in WriteCell()
2912 sal_Int32 nColumns(aCell.aMatrixRange.EndColumn - aCell.aMatrixRange.StartColumn + 1); in WriteCell()
2913 sal_Int32 nRows(aCell.aMatrixRange.EndRow - aCell.aMatrixRange.StartRow + 1); in WriteCell()
2922 switch (aCell.nType) in WriteCell()
2931 if (!aCell.bHasDoubleValue) in WriteCell()
2933 aCell.fValue = pDoc->GetValue( aCellPos ); in WriteCell()
2934 aCell.bHasDoubleValue = sal_True; in WriteCell()
2937 aCell.nNumberFormat, aCell.fValue); in WriteCell()
2942 if (GetCellText(aCell, aCellPos)) in WriteCell()
2946 sFormula, aCell.sStringValue, sal_True, sal_True); in WriteCell()
2976 … GetNumberFormatAttributesExportHelper()->GetCellType(aCell.nNumberFormat, sCurrency, bIsStandard); in WriteCell()
2986 aCell.nNumberFormat, pDoc->GetValue( aCellPos )); in WriteCell()
2990 if (GetCellText(aCell, aCellPos)) in WriteCell()
2991 if (aCell.sStringValue.getLength()) in WriteCell()
2994 AddAttribute(sAttrStringValue, aCell.sStringValue); in WriteCell()
3006 if (aCell.bIsCovered) in WriteCell()
3012 if (aCell.bIsMergedBase) in WriteCell()
3014 sal_Int32 nColumns(aCell.aMergeRange.EndColumn - aCell.aMergeRange.StartColumn + 1); in WriteCell()
3015 sal_Int32 nRows(aCell.aMergeRange.EndRow - aCell.aMergeRange.StartRow + 1); in WriteCell()
3026 WriteAreaLink(aCell); in WriteCell()
3027 WriteAnnotation(aCell); in WriteCell()
3028 WriteDetective(aCell); in WriteCell()
3034 if ((aCell.nType == table::CellContentType_TEXT && IsEditCell(aCell)) || in WriteCell()
3035 (aCell.nType == table::CellContentType_FORMULA && IsMultiLineFormulaCell(aCell))) in WriteCell()
3038 …ext::XText> xText(xCurrentTableCellRange->getCellByPosition(aCell.aCellAddress.Column, aCell.aCell… in WriteCell()
3046 if (GetCellText(aCell, aCellPos)) in WriteCell()
3047 GetTextParagraphExport()->exportText(aCell.sStringValue, bPrevCharWasSpace); in WriteCell()
3050 WriteShapes(aCell); in WriteCell()