Home
last modified time | relevance | path

Searched refs:eCellType (Results 1 – 23 of 23) sorted by relevance

/AOO41X/main/oox/source/xls/
H A Dsheetdatacontext.cxx427 bool SheetDataContext::readCellHeader( SequenceInputStream& rStrm, CellType eCellType ) in readCellHeader() argument
429 switch( eCellType ) in readCellHeader()
462 void SheetDataContext::importCellBool( SequenceInputStream& rStrm, CellType eCellType ) in importCellBool() argument
464 if( readCellHeader( rStrm, eCellType ) ) in importCellBool()
468 if( eCellType == CELLTYPE_FORMULA ) in importCellBool()
475 void SheetDataContext::importCellBlank( SequenceInputStream& rStrm, CellType eCellType ) in importCellBlank() argument
477 …OSL_ENSURE( eCellType != CELLTYPE_FORMULA, "SheetDataContext::importCellBlank - no formula cells s… in importCellBlank()
478 if( readCellHeader( rStrm, eCellType ) ) in importCellBlank()
482 void SheetDataContext::importCellDouble( SequenceInputStream& rStrm, CellType eCellType ) in importCellDouble() argument
484 if( readCellHeader( rStrm, eCellType ) ) in importCellDouble()
[all …]
/AOO41X/main/oox/inc/oox/xls/
H A Dsheetdatacontext.hxx88 bool readCellHeader( SequenceInputStream& rStrm, CellType eCellType );
95 void importCellBlank( SequenceInputStream& rStrm, CellType eCellType );
97 void importCellBool( SequenceInputStream& rStrm, CellType eCellType );
99 void importCellDouble( SequenceInputStream& rStrm, CellType eCellType );
101 void importCellError( SequenceInputStream& rStrm, CellType eCellType );
103 void importCellRk( SequenceInputStream& rStrm, CellType eCellType );
105 void importCellRString( SequenceInputStream& rStrm, CellType eCellType );
107 void importCellSi( SequenceInputStream& rStrm, CellType eCellType );
109 void importCellString( SequenceInputStream& rStrm, CellType eCellType );
/AOO41X/main/sc/source/core/data/
H A Dtable4.cxx165 sal_uInt16 nDigits, const String& rSuffix, CellType eCellType, in lcl_getSuffixCell() argument
173 if (eCellType != CELLTYPE_EDIT) in lcl_getSuffixCell()
221 CellType eCellType = pFirstCell ? pFirstCell->GetCellType() : CELLTYPE_NONE; in FillAnalyse() local
223 if (eCellType == CELLTYPE_VALUE) in FillAnalyse()
338 else if (eCellType == CELLTYPE_STRING || eCellType == CELLTYPE_EDIT) in FillAnalyse()
758 CellType eCellType = CELLTYPE_NONE; in FillAuto() local
774 eCellType = pSrcCell->GetCellType(); in FillAuto()
775 switch ( eCellType ) in FillAuto()
782 if ( eCellType == CELLTYPE_STRING ) in FillAuto()
803 eCellType = CELLTYPE_NONE; in FillAuto()
[all …]
H A Dcell.cxx83 eCellType( sal::static_int_cast<sal_uInt8>(eNewType) ), in IMPL_FIXEDMEMPOOL_NEWDEL()
92 eCellType( rCell.eCellType ), in ScBaseCell()
101 DBG_ASSERT( eCellType == CELLTYPE_DESTROYED, "BaseCell Destructor" ); in ~ScBaseCell()
132 if( eCellType == CELLTYPE_FORMULA ) in CloneWithoutNote()
158 switch (eCellType) in Delete()
183 return (eCellType == CELLTYPE_NOTE) && (bIgnoreNotes || !mpNote); in IsBlank()
232 if ( eCellType == CELLTYPE_FORMULA && !pDoc->IsClipOrUndo() in StartListeningTo()
319 if ( eCellType == CELLTYPE_FORMULA && !pDoc->IsClipOrUndo() in EndListeningTo()
405 switch ( eCellType ) in GetErrorCode()
417 switch ( eCellType ) in HasEmptyData()
[all …]
H A Dcolumn2.cxx327 CellType eCellType = pCell->GetCellType(); in GetNeededSize() local
329 sal_Bool bEditEngine = ( eCellType == CELLTYPE_EDIT || in GetNeededSize()
332 … ((eCellType == CELLTYPE_FORMULA) && ((ScFormulaCell*)pCell)->IsMultilineResult()) ); in GetNeededSize()
939 CellType eCellType; in GetNextSpellingCell() local
943 eCellType = GetCellType(nRow); in GetNextSpellingCell()
944 if ( (eCellType == CELLTYPE_STRING || eCellType == CELLTYPE_EDIT) && in GetNextSpellingCell()
961 eCellType = GetCellType(nRow); in GetNextSpellingCell()
962 if ( (eCellType == CELLTYPE_STRING || eCellType == CELLTYPE_EDIT) && in GetNextSpellingCell()
972 eCellType = GetCellType(nRow); in GetNextSpellingCell()
973 if ( (eCellType == CELLTYPE_STRING || eCellType == CELLTYPE_EDIT) && in GetNextSpellingCell()
H A Dtable6.cxx74 CellType eCellType = pCell->GetCellType(); in SearchCell() local
79 if ( eCellType == CELLTYPE_FORMULA ) in SearchCell()
82 else if ( eCellType == CELLTYPE_EDIT ) in SearchCell()
90 if ( eCellType == CELLTYPE_EDIT ) in SearchCell()
141 !( (eCellType == CELLTYPE_FORMULA && in SearchCell()
H A Dcolumn3.cxx145 CellType eCellType = pNewCell->GetCellType(); in Insert() local
148 if ( !(pDocument->IsCalcingAfterLoad() && eCellType == CELLTYPE_NOTE) ) in Insert()
150 if ( eCellType == CELLTYPE_FORMULA ) in Insert()
430 CellType eCellType = pOldCell->GetCellType(); in DeleteRange() local
431 switch ( eCellType ) in DeleteRange()
470 if (eCellType != CELLTYPE_NOTE) in DeleteRange()
498 if (eCellType == CELLTYPE_FORMULA) in DeleteRange()
612 CellType eCellType = pCell->GetCellType(); in CreateRefCell() local
613 switch ( eCellType ) in CreateRefCell()
H A Dcolumn.cxx2114 CellType eCellType = pCell->GetCellType(); in HasEditCells() local
2115 if ( eCellType == CELLTYPE_EDIT || in HasEditCells()
2117 ((eCellType == CELLTYPE_FORMULA) && ((ScFormulaCell*)pCell)->IsMultilineResult()) ) in HasEditCells()
H A Dcell2.cxx99 eCellType = CELLTYPE_DESTROYED; in ~ScEditCell()
/AOO41X/main/connectivity/source/drivers/calc/
H A DCTable.cxx157 CellContentType eCellType = xCell->getType(); in lcl_GetContentOrResultType() local
158 if ( eCellType == CellContentType_FORMULA ) in lcl_GetContentOrResultType()
164 … xProp->getPropertyValue( s_sFormulaResultType ) >>= eCellType; // type of formula result in lcl_GetContentOrResultType()
168 eCellType = CellContentType_VALUE; // if FormulaResultType property not available in lcl_GetContentOrResultType()
171 return eCellType; in lcl_GetContentOrResultType()
268 const CellContentType eCellType = lcl_GetContentOrResultType( xDataCell ); in lcl_GetColumnInfo() local
270 … if ( eCellType == CellContentType_TEXT || lcl_HasTextInColumn( xSheet, nDocColumn, nDataRow ) ) in lcl_GetColumnInfo()
272 else if ( eCellType == CellContentType_VALUE ) in lcl_GetColumnInfo()
342 CellContentType eCellType = lcl_GetContentOrResultType( xCell ); in lcl_SetValue() local
346 if ( eCellType == CellContentType_EMPTY ) in lcl_SetValue()
[all …]
/AOO41X/main/sc/source/ui/view/
H A Dspelleng.cxx129 CellType eCellType = mrDoc.GetCellType( aPos ); in FindNextConversionCell() local
138 if( eCellType == CELLTYPE_EDIT ) in FindNextConversionCell()
283 CellType eCellType; in FillFromCell() local
284 mrDoc.GetCellType( nCol, nRow, nTab, eCellType ); in FillFromCell()
286 switch( eCellType ) in FillFromCell()
H A Dviewfun4.cxx317 CellType eCellType; in DoThesaurus() local
350 pDoc->GetCellType(nCol, nRow, nTab, eCellType); in DoThesaurus()
351 if (eCellType != CELLTYPE_STRING && eCellType != CELLTYPE_EDIT) in DoThesaurus()
380 if (eCellType == CELLTYPE_STRING) in DoThesaurus()
385 else if (eCellType == CELLTYPE_EDIT) in DoThesaurus()
H A Dcellsh1.cxx653 CellType eCellType; in ExecuteEdit() local
655 pDoc->GetCellType( nStartCol, nStartRow, nStartTab,eCellType ); in ExecuteEdit()
668 else if(eCellType==CELLTYPE_STRING) in ExecuteEdit()
H A Doutput2.cxx1540 CellType eCellType = pCell->GetCellType(); in DrawStrings() local
1541 bCellIsValue = ( eCellType == CELLTYPE_VALUE ); in DrawStrings()
1542 if ( eCellType == CELLTYPE_FORMULA ) in DrawStrings()
/AOO41X/main/sc/source/ui/unoobj/
H A Dcellvaluebinding.cxx252 CellContentType eCellType = m_xCell->getType(); in getValue() local
253 if ( eCellType == CellContentType_VALUE ) in getValue()
255 else if ( eCellType == CellContentType_FORMULA ) in getValue()
/AOO41X/main/chart2/source/controller/dialogs/
H A DDataBrowserModel.hxx77 enum eCellType enum in chart::DataBrowserModel
84 eCellType getCellType( sal_Int32 nAtColumn, sal_Int32 nAtRow ) const;
H A DDataBrowserModel.cxx249 eCellType m_eCellType;
262 eCellType aCellType, in tDataColumn()
589 DataBrowserModel::eCellType DataBrowserModel::getCellType( sal_Int32 nAtColumn, sal_Int32 /* nAtRow… in getCellType()
591 eCellType eResult = TEXT; in getCellType()
/AOO41X/main/sc/inc/
H A Dcell.hxx102 inline CellType GetCellType() const { return (CellType)eCellType; } in GetCellType()
168 sal_uInt8 eCellType; // enum CellType - sal_uInt8 spart Speicher member in ScBaseCell
/AOO41X/main/sc/source/filter/excel/
H A Dxicontent.cxx171 CellType eCellType = rDoc.GetCellType( aScPos ); in lclInsertUrl() local
172 switch( eCellType ) in lclInsertUrl()
186 …const ScEditCell* pEditCell = (eCellType == CELLTYPE_EDIT) ? static_cast< const ScEditCell* >( rDo… in lclInsertUrl()
H A Dexcform.cxx138 CellType eCellType; in Formula() local
140 pD->GetCellType( aScPos.Col(), aScPos.Row(), aScPos.Tab(), eCellType ); in Formula()
141 if( eCellType == CELLTYPE_FORMULA ) in Formula()
H A Dxetable.cxx2411 CellType eCellType = pScCell ? pScCell->GetCellType() : CELLTYPE_NONE; in XclExpCellTable() local
2412 switch( eCellType ) in XclExpCellTable()
/AOO41X/main/sc/source/core/tool/
H A Dinterpr1.cxx1778 CellType eCellType = GetCellType( GetCell( aAdr ) ); in ScIsEmpty() local
1779 if((eCellType == CELLTYPE_NONE) || (eCellType == CELLTYPE_NOTE)) in ScIsEmpty()
3339 CellType eCellType = pCell->GetCellType(); in IterateParameters() local
3340 if (eCellType != CELLTYPE_NONE && eCellType != CELLTYPE_NOTE) in IterateParameters()
4477 CellType eCellType; in ScCountEmptyCells() local
4485 eCellType = GetCellType( GetCell( aAdr ) ); in ScCountEmptyCells()
4486 if (eCellType != CELLTYPE_NONE && eCellType != CELLTYPE_NOTE) in ScCountEmptyCells()
4509 if ((eCellType = pCell->GetCellType()) != CELLTYPE_NONE in ScCountEmptyCells()
4510 && eCellType != CELLTYPE_NOTE) in ScCountEmptyCells()
/AOO41X/main/sc/source/ui/app/
H A Dinputwin.cxx475 CellType eCellType = pDoc->GetCellType( pViewSh->GetViewData()->GetCurPos() ); in Select() local
476 switch ( eCellType ) in Select()