/trunk/main/writerfilter/source/dmapper/ |
H A D | TDefTableHandler.cxx | 274 size_t nCell, ::boost::shared_ptr< TablePropertyMap > pCellProperties ) const in fillCellProperties() argument 276 if( m_aCellBorderPositions.size() > nCell ) in fillCellProperties() 279 switch( m_aCellVertAlign[nCell] ) //0 - top 1 - center 2 - bottom in fillCellProperties() 287 if( m_aTopBorderLines.size() > nCell ) in fillCellProperties() 288 pCellProperties->Insert( PROP_TOP_BORDER, false, uno::makeAny( m_aTopBorderLines[nCell] ) ); in fillCellProperties() 289 if( m_aLeftBorderLines.size() > nCell ) in fillCellProperties() 290 … pCellProperties->Insert( PROP_LEFT_BORDER, false, uno::makeAny( m_aLeftBorderLines[nCell] ) ); in fillCellProperties() 291 if( m_aBottomBorderLines.size() > nCell ) in fillCellProperties() 293 if( m_aRightBorderLines.size() > nCell ) in fillCellProperties() 295 if( m_aInsideHBorderLines.size() > nCell ) in fillCellProperties() [all …]
|
H A D | DomainMapperTableHandler.cxx | 199 sal_Int32 nCell, sal_Int32 nRow, bool bIsEndCol, bool bIsEndRow ) in lcl_computeCellBorders() argument 238 if ( nCell == 0 ) in lcl_computeCellBorders() 252 if ( nCell > 0 && !bIsEndCol ) in lcl_computeCellBorders() 611 sal_Int32 nCell = 0; in endTableGetCellProperties() local 653 dmapper_logger->attribute("cell", nCell); in endTableGetCellProperties() 657 … lcl_computeCellBorders( rInfo.pTableBorders, *aCellIterator, nCell, nRow, bIsEndCol, bIsEndRow ); in endTableGetCellProperties() 683 pSingleCellProperties[nCell] = aCellIterator->get()->GetPropertyValues(); in endTableGetCellProperties() 688 ++nCell; in endTableGetCellProperties()
|
H A D | DomainMapperTableManager.cxx | 173 for( size_t nCell = 0; nCell < pTDefTableHandler->getCellCount(); ++nCell ) in sprm() local 176 pTDefTableHandler->fillCellProperties( nCell, pCellPropMap ); in sprm() 177 cellPropsByCell( nCell, pCellPropMap ); in sprm()
|
H A D | TDefTableHandler.hxx | 76 …void fillCellProperties( size_t nCell, ::boost::shared_ptr<…
|
/trunk/main/sw/source/filter/inc/ |
H A D | fltshell.hxx | 350 virtual void SetCellWidth(SwTwips nWidth, sal_uInt16 nCell); 352 virtual void SetCellBorder(const SvxBoxItem& rFmtBox, sal_uInt16 nCell); 354 virtual void DeleteCell(sal_uInt16 nCell); 407 virtual void SetCellWidth(SwTwips nWidth, sal_uInt16 nCell); 409 virtual void SetCellBorder(const SvxBoxItem& rFmtBox, sal_uInt16 nCell); 411 virtual void DeleteCell(sal_uInt16 nCell); 573 void SetCellWidth(SwTwips nWidth, sal_uInt16 nCell = USHRT_MAX ) { in SetCellWidth() argument 574 pOut->SetCellWidth(nWidth, nCell); } in SetCellWidth() 578 pOut->SetCellBorder(rFmtBox, nCell); } in SetCellBorder() 581 void DeleteCell(sal_uInt16 nCell = USHRT_MAX) { in DeleteCell() argument [all …]
|
/trunk/main/sw/source/filter/ww8/ |
H A D | WW8TableInfo.cxx | 68 void WW8TableNodeInfoInner::setCell(sal_uInt32 nCell) in setCell() argument 70 mnCell = nCell; in setCell() 463 void WW8TableNodeInfo::setCell(sal_uInt32 nCell) in setCell() argument 465 getInnerForDepth(mnDepth)->setCell(nCell); in setCell() 718 sal_uInt32 nCell, in processTableBoxLines() argument 772 sal_uInt32 nCell, in processTableBox() argument 868 sal_uInt32 nCell, in insertTableNodeInfo() argument 886 pNodeInfo->setCell(nCell); in insertTableNodeInfo() 1217 sal_uInt32 nCell = 0; in connectCells() local 1239 pNodeInfo->setCell(nCell); in connectCells() [all …]
|
H A D | WW8TableInfo.hxx | 82 void setCell(sal_uInt32 nCell); 190 void setCell(sal_uInt32 nCell); 313 sal_uInt32 nCell, 321 sal_uInt32 nCell, 329 sal_uInt32 nCell,
|
H A D | docxattributeoutput.cxx | 149 sal_uInt32 nCell = pTextNodeInfo->getCell(); in StartParagraph() local 161 if ( nRow == 0 && nCell == 0 ) in StartParagraph()
|
H A D | rtfattributeoutput.cxx | 454 sal_uInt32 nCell = pTextNodeInfo->getCell(); in StartParagraph() local 467 if ( nRow == 0 && nCell == 0 ) in StartParagraph()
|
/trunk/main/writerfilter/inc/resourcemodel/ |
H A D | TableManager.hxx | 989 for (unsigned int nCell = 0; nCell < nCells; ++nCell) in resolveCurrentTable() local 992 (pRowData->getCellStart(nCell), in resolveCurrentTable() 993 pRowData->getCellProperties(nCell)); in resolveCurrentTable() 995 mpTableDataHandler->endCell(pRowData->getCellEnd(nCell)); in resolveCurrentTable()
|
/trunk/main/sw/source/filter/html/ |
H A D | htmltabw.cxx | 516 for( sal_uInt16 nCell = 0; nCell<rCells.Count(); nCell++ ) in OutTableCells() local 518 sal_Int16 eCellVertOri = rCells[nCell]->GetVertOri(); in OutTableCells() 519 if( 0==nCell ) in OutTableCells() 556 for( sal_uInt16 nCell = 0; nCell<rCells.Count(); nCell++ ) in OutTableCells() local 557 OutTableCell( rWrt, rCells[nCell], text::VertOrientation::NONE==eRowVertOri ); in OutTableCells()
|
H A D | htmltab.cxx | 320 inline HTMLTableCell *GetCell( sal_uInt16 nCell ) const; 506 const SwStartNode* GetPrevBoxStartNode( sal_uInt16 nRow, sal_uInt16 nCell ) const; 575 inline HTMLTableCell *GetCell( sal_uInt16 nRow, sal_uInt16 nCell ) const; 866 inline HTMLTableCell *HTMLTableRow::GetCell( sal_uInt16 nCell ) const in GetCell() 868 ASSERT( nCell<pCells->Count(), in GetCell() 870 return (*pCells)[nCell]; in GetCell() 2107 sal_uInt16 nCell ) const in GetCell() 2111 return ((*pRows)[nRow])->GetCell( nCell ); in GetCell()
|
/trunk/main/sw/source/core/unocore/ |
H A D | unotext.cxx | 2093 const sal_Int32 nCell, in lcl_ApplyCellProperties() argument 2112 if (!nCell) in lcl_ApplyCellProperties() 2116 else if (rRowSeparators.getLength() >= nCell) in lcl_ApplyCellProperties() 2120 nLeftPos = pSeparators[nCell - 1].Position; in lcl_ApplyCellProperties() 2272 for (sal_Int32 nCell = 0; nCell < nCells; ++nCell) in convertToTable() local 2274 m_pImpl->ConvertCell((nCell == 0) && (nRow == 0), pRow[nCell], in convertToTable() 2349 for (sal_Int32 nCell = 0; nCell < nCells; ++nCell) in convertToTable() local 2351 lcl_ApplyCellProperties(nCell, in convertToTable() 2352 aRowSeparators[nRow], aCurrentRow[nCell], in convertToTable() 2353 pTextTable->getCellByPosition(nCell, nRow), in convertToTable()
|
/trunk/main/oox/source/xls/ |
H A D | scenariobuffer.cxx | 141 for( sal_uInt16 nCell = 0; !rStrm.isEof() && (nCell < nCellCount); ++nCell ) in importScenario() local
|
/trunk/main/sw/source/filter/ww1/ |
H A D | fltshell.cxx | 1615 void SwFltOutDoc::SetCellWidth(SwTwips nWidth, sal_uInt16 nCell /* = USHRT_MAX */ ) in SetCellWidth() argument 1625 SwTableBox* pTableBox = GetBox(usTableY, nCell); in SetCellWidth() 1663 sal_uInt16 nCell /* = USHRT_MAX */ ) in SetCellBorder() argument 1665 SwTableBox* pTableBox = GetBox(usTableY, nCell); in SetCellBorder() 1694 void SwFltOutDoc::DeleteCell(sal_uInt16 nCell /* = USHRT_MAX */) in DeleteCell() argument 1696 SwTableBox* pTableBox = GetBox(usTableY, nCell); in DeleteCell()
|
/trunk/main/oox/source/dump/ |
H A D | biffdumper.cxx | 2971 for( sal_uInt16 nCell = 0; !rStrm.isEof() && (nCell < nCellCount); ++nCell ) in implDumpRecordBody() local 2974 for( sal_uInt16 nCell = 0; !rStrm.isEof() && (nCell < nCellCount); ++nCell ) in implDumpRecordBody() local
|