Home
last modified time | relevance | path

Searched refs:rCell (Results 1 – 25 of 46) sorted by path

12

/trunk/main/autodoc/source/display/html/
H A Dnav_main.cxx108 TableCell & rCell = o_rOut.AddCell(); in do_Write2() local
110 rCell in do_Write2()
115 rCell in do_Write2()
135 TableCell & rCell = o_rOut.AddCell(); in do_Write2() local
137 rCell in do_Write2()
159 TableCell & rCell = o_rOut.AddCell(); in do_Write2() local
161 rCell in do_Write2()
/trunk/main/autodoc/source/display/idl/
H A Dhfi_module.cxx240 rCell = o_row in produce_Link() local
247 aText(Env(), rCell, true); in produce_Link()
253 rCell in produce_Link()
269 rCell = o_row in produce_LinkDoc() local
283 rCell << "[ DEPRECATED ]" << new Html::LineBreak; in produce_LinkDoc()
287 rCell << "[ OPTIONAL ]" << new Html::LineBreak; in produce_LinkDoc()
291 aShortDisplay(Env(), &rCell, *i_ce); in produce_LinkDoc()
H A Dhfi_service.cxx263 rCell = o_row in produce_SummaryDeclaration() local
269 rCell << "[ "; in produce_SummaryDeclaration()
271 rCell << "readonly "; in produce_SummaryDeclaration()
273 rCell << "bound "; in produce_SummaryDeclaration()
281 rCell << "maybevoid "; in produce_SummaryDeclaration()
283 rCell << "removable "; in produce_SummaryDeclaration()
285 rCell << "transient "; in produce_SummaryDeclaration()
286 rCell << "] "; in produce_SummaryDeclaration()
295 rCell in produce_SummaryDeclaration()
326 rCell = o_row in produce_Link() local
[all …]
/trunk/main/autodoc/source/display/toolkit/
H A Dhf_navi_main.cxx180 rCell = CurOut() >>* new Html::TableCell; in do_ProduceItem() local
181 rCell in do_ProduceItem()
203 rCell = CurOut() >>* new Html::TableCell; in do_ProduceItem() local
204 rCell in do_ProduceItem()
224 rCell = CurOut() >>* new Html::TableCell; in do_ProduceItem() local
225 rCell in do_ProduceItem()
H A Dhf_navi_sub.cxx78 rCell = *pMyRow in Produce_Row() local
84 ? ( rCell in Produce_Row()
91 : rCell; in Produce_Row()
H A Dhf_title.cxx139 rCell = CurOut() in HF_SubTitleTable() local
148 rCell in HF_SubTitleTable()
151 rCell in HF_SubTitleTable()
/trunk/main/chart2/source/tools/
H A DXMLRangeHelper.cxx88 OUStringBuffer lcl_getXMLStringForCell( const ::chart::XMLRangeHelper::Cell & rCell ) in lcl_getXMLStringForCell() argument
91 if( rCell.empty()) in lcl_getXMLStringForCell()
94 sal_Int32 nCol = rCell.nColumn; in lcl_getXMLStringForCell()
96 if( ! rCell.bRelativeColumn ) in lcl_getXMLStringForCell()
115 if( ! rCell.bRelativeRow ) in lcl_getXMLStringForCell()
117 aBuffer.append( rCell.nRow + (sal_Int32)1 ); in lcl_getXMLStringForCell()
/trunk/main/reportdesign/source/filter/xml/
H A DxmlTable.cxx214 TCell& rCell = *aColIter; in EndElement() local
215 if ( !rCell.xElements.empty()) in EndElement()
228 sal_Int32 nWidth = rCell.nWidth; in EndElement()
229 sal_Int32 nColSpan = rCell.nColSpan; in EndElement()
239 nHeight = rCell.nHeight; in EndElement()
295 TCell& rCell = m_aGrid[m_nRowIndex-1][m_nColumnIndex-1]; in addCell() local
297 rCell.xElements.push_back( _xElement ); in addCell()
300 rCell.nWidth = m_aWidth[m_nColumnIndex-1]; in addCell()
301 rCell.nHeight = m_aHeight[m_nRowIndex-1]; in addCell()
302 rCell.nColSpan = m_nColSpan; in addCell()
[all …]
/trunk/main/sc/inc/
H A Dcell.hxx84 ScBaseCell( const ScBaseCell& rCell );
265 ScEditCell( const ScEditCell& rCell, ScDocument& rDoc );
347 …ScFormulaCell( const ScFormulaCell& rCell, ScDocument& rDoc, const ScAddress& rPos, int nCloneFlag…
H A Ddpcachetable.hxx225 void getValueData(ScDocument* pDoc, const ScAddress& rPos, ScDPCacheCell& rCell);
H A Dexternalrefmgr.hxx538 sal_uInt16 nFileId, const String& rTabName, const ScAddress& rCell,
682 void insertRefCell(sal_uInt16 nFileId, const ScAddress& rCell);
/trunk/main/sc/source/core/data/
H A Dcell.cxx91 nTextWidth( rCell.nTextWidth ), in ScBaseCell()
92 eCellType( rCell.eCellType ), in ScBaseCell()
727 ScBaseCell( rCell ), in ScFormulaCell()
729 aResult( rCell.aResult ), in ScFormulaCell()
736 nFormatIndex( &rDoc == rCell.pDocument ? rCell.nFormatIndex : 0 ), in ScFormulaCell()
740 bDirty( rCell.bDirty ), in ScFormulaCell()
741 bChanged( rCell.bChanged ), in ScFormulaCell()
743 bCompile( rCell.bCompile ), in ScFormulaCell()
744 bSubTotal( rCell.bSubTotal ), in ScFormulaCell()
751 if ( rCell.pValidRefToken ) in ScFormulaCell()
[all …]
H A Dcell2.cxx71 ScEditCell::ScEditCell( const ScEditCell& rCell, ScDocument& rDoc ) : in ScEditCell() argument
72 ScBaseCell( rCell ), in ScEditCell()
76 SetTextObject( rCell.pData, rCell.pDoc->GetEditPool() ); in ScEditCell()
H A Dtable6.cxx48 sal_Bool lcl_GetTextWithBreaks( const ScEditCell& rCell, ScDocument* pDoc, String& rVal ) in lcl_GetTextWithBreaks() argument
53 rCell.GetData( pData ); in lcl_GetTextWithBreaks()
/trunk/main/sc/source/core/tool/
H A Drangeseq.cxx256 double lcl_GetValueFromCell( ScBaseCell& rCell ) in lcl_GetValueFromCell() argument
260 CellType eType = rCell.GetCellType(); in lcl_GetValueFromCell()
262 return ((ScValueCell&)rCell).GetValue(); in lcl_GetValueFromCell()
264 return ((ScFormulaCell&)rCell).GetValue(); // called only if result is value in lcl_GetValueFromCell()
H A Drangeutl.cxx776 rtl::OUStringBuffer& rBuf, ScDocument* pDoc, const ScAddress& rCell, in lcl_appendCellAddress() argument
796 rCell.Format(aAddr, SCA_ABS, NULL, ::formula::FormulaGrammar::CONV_OOO); in lcl_appendCellAddress()
802 rCell.Format(aAddr, SCA_ABS_3D, pDoc, ::formula::FormulaGrammar::CONV_OOO); in lcl_appendCellAddress()
/trunk/main/sc/source/filter/excel/
H A Dexcform.cxx1802 sal_Bool ExcelToSc::SetCurVal( ScFormulaCell &rCell, double &rfCurVal )
1823 rCell.SetHybridDouble( rfCurVal );
1836 rCell.SetHybridDouble( rfCurVal );
1839 rCell.SetErrCode( XclTools::GetScErrorCode( nVal ) );
1849 void ExcelToSc::SetError( ScFormulaCell &rCell, const ConvErr eErr ) in SetError() argument
1863 rCell.SetErrCode( nInd ); in SetError()
H A Dxelink.cxx209 void StoreCell( const ScAddress& rCell, const ::formula::FormulaToken& rToken );
307 …void StoreCell( sal_uInt16 nSBTab, const ScAddress& rCell, const ::formula::Formula…
392 …oid StoreCell( sal_uInt16 nFileId, const String& rTabName, const ScAddress& rCell );
1209 void XclExpXct::StoreCell( const ScAddress& rCell, const ::formula::FormulaToken& rToken ) in StoreCell() argument
1211 maUsedCells.SetMultiMarkArea( ScRange( rCell ) ); in StoreCell()
1212 maBoundRange.ExtendTo( ScRange( rCell ) ); in StoreCell()
1459 void XclExpSupbook::StoreCell( sal_uInt16 nSBTab, const ScAddress& rCell, const formula::FormulaTok… in StoreCell() argument
1462 pXct->StoreCell( rCell, rToken ); in StoreCell()
1663 …clExpSupbookBuffer::StoreCell( sal_uInt16 nFileId, const String& rTabName, const ScAddress& rCell ) in StoreCell() argument
1678 …ScExternalRefCache::TokenRef pToken = pRefMgr->getSingleRefToken(nFileId, rTabName, rCell, NULL, N… in StoreCell()
[all …]
H A Dxetable.cxx589 sal_uInt32 nXFId = rCell.GetFirstXFId(); in lcl_GetStyleId()
697 const ScEditCell& rCell, XclExpHyperlinkHelper& rLinkHelper ) : in XclExpLabelCell() argument
934 switch( rCell.GetFormatType() ) in lcl_GetFormulaInfo()
939 sal_uInt16 nScErrCode = rCell.GetErrCode(); in lcl_GetFormulaInfo()
948 rValue = OUString::valueOf( rCell.GetValue() ); in lcl_GetFormulaInfo()
957 rCell.GetString( aResult ); in lcl_GetFormulaInfo()
973 rCell.GetString( aResult ); in lcl_GetFormulaInfo()
1244 if( GetLastXclCol() + 1 == rCell.GetXclCol() ) in TryMergeXFIds()
1246 maXFIds.insert( maXFIds.end(), rCell.maXFIds.begin(), rCell.maXFIds.end() ); in TryMergeXFIds()
1312 bool XclExpBlankCell::TryMerge( const XclExpCellBase& rCell ) in TryMerge() argument
[all …]
/trunk/main/sc/source/filter/inc/
H A Dexcform.hxx73 static sal_Bool SetCurVal( ScFormulaCell& rCell, double& rCurVal );
75 static void SetError( ScFormulaCell& rCell, const ConvErr eErr );
H A Dxetable.hxx297 virtual bool TryMerge( const XclExpCellBase& rCell );
443 const ScStringCell& rCell );
448 const ScEditCell& rCell, XclExpHyperlinkHelper& rHlinkHelper );
548 bool TryMergeXFIds( const XclExpMultiCellBase& rCell );
585 virtual bool TryMerge( const XclExpCellBase& rCell );
610 virtual bool TryMerge( const XclExpCellBase& rCell );
/trunk/main/sc/source/filter/xml/
H A Dxmlexprt.cxx3515 sal_Bool ScXMLExport::IsEditCell(ScMyCell& rCell) const in IsEditCell()
3517 if (rCell.bKnowWhetherIsEditCell) in IsEditCell()
3518 return rCell.bIsEditCell; in IsEditCell()
3521 rCell.bIsEditCell = IsEditCell(rCell.aCellAddress, &rCell); in IsEditCell()
3522 rCell.bKnowWhetherIsEditCell = sal_True; in IsEditCell()
3523 return rCell.bIsEditCell; in IsEditCell()
3529 if (rCell.pBaseCell) in IsMultiLineFormulaCell()
3531 if (rCell.pBaseCell->GetCellType() != CELLTYPE_FORMULA) in IsMultiLineFormulaCell()
3538 static_cast<SCROW>(rCell.aCellAddress.Row), in IsMultiLineFormulaCell()
3544 rCell.pBaseCell = pBaseCell; in IsMultiLineFormulaCell()
[all …]
H A Dxmlexprt.hxx193 sal_Bool IsEditCell(ScMyCell& rCell) const;
194 sal_Bool IsMultiLineFormulaCell(ScMyCell& rCell) const;
/trunk/main/sc/source/ui/Accessibility/
H A DAccessibleCell.cxx450 void ScAccessibleCell::AddRelation(const ScAddress& rCell, in AddRelation() argument
454 AddRelation(ScRange(rCell, rCell), aRelationType, pRelationSet); in AddRelation()
H A DAccessibleText.cxx62 ScViewForwarder(ScTabViewShell* pViewShell, ScSplitPos eSplitPos, const ScAddress& rCell);
73 …orwarder::ScViewForwarder(ScTabViewShell* pViewShell, ScSplitPos eSplitPos, const ScAddress& rCell) in ScViewForwarder() argument
76 maCellPos(rCell), in ScViewForwarder()

Completed in 162 milliseconds

12