Lines Matching refs:rCell
149 void operator() ( const SchXMLCell & rCell ) in operator ()()
153 if( rCell.eType == SCH_CELL_TYPE_FLOAT ) in operator ()()
154 m_rData[m_nIndex] = rCell.fValue; in operator ()()
809 SchXMLCell& rCell = mrTable.aData[ mrTable.nRowIndex ][ mrTable.nColumnIndex ]; in CreateChildContext() local
810 rCell.pComplexString = new Sequence< OUString >(); in CreateChildContext()
811 rCell.eType = SCH_CELL_TYPE_COMPLEX_STRING; in CreateChildContext()
812 pContext = new SchXMLTextListContext( GetImport(), rLocalName, *rCell.pComplexString ); in CreateChildContext()
845 void lcl_ApplyCellToComplexLabel( const SchXMLCell& rCell, Sequence< uno::Any >& rComplexLabel ) in lcl_ApplyCellToComplexLabel() argument
847 if( rCell.eType == SCH_CELL_TYPE_STRING ) in lcl_ApplyCellToComplexLabel()
850 rComplexLabel[0] = uno::makeAny( rCell.aString ); in lcl_ApplyCellToComplexLabel()
852 else if( rCell.pComplexString && rCell.eType == SCH_CELL_TYPE_COMPLEX_STRING ) in lcl_ApplyCellToComplexLabel()
854 sal_Int32 nCount = rCell.pComplexString->getLength(); in lcl_ApplyCellToComplexLabel()
857 rComplexLabel[nN] = uno::makeAny((*rCell.pComplexString)[nN]); in lcl_ApplyCellToComplexLabel()
859 else if( rCell.eType == SCH_CELL_TYPE_FLOAT ) in lcl_ApplyCellToComplexLabel()
862 rComplexLabel[0] = uno::makeAny( rCell.fValue ); in lcl_ApplyCellToComplexLabel()