Lines Matching refs:m_xCell

70         if ( m_xCellText.is() && !m_xCell.is() )  in checkConsistency()
128 Reference<XModifyBroadcaster> xBroadcaster( m_xCell, UNO_QUERY ); in IMPLEMENT_FORWARD_XINTERFACE2()
171 Reference< XCellAddressable > xCellAddress( m_xCell, UNO_QUERY ); in getFastPropertyValue()
183 sal_Int32 nCount = m_xCellText.is() ? 3 : m_xCell.is() ? 1 : 0; in getSupportedValueTypes()
188 if ( m_xCell.is() ) in getSupportedValueTypes()
246 … DBG_ASSERT( m_xCell.is(), "OCellValueBinding::getValue: don't have a double value supplier!" ); in getValue()
247 if ( m_xCell.is() ) in getValue()
252 CellContentType eCellType = m_xCell->getType(); in getValue()
258 if ( m_xCell->getError() == 0 ) in getValue()
260 Reference<XPropertySet> xProp( m_xCell, UNO_QUERY ); in getValue()
273 double nCellValue = m_xCell->getValue(); in getValue()
282 … DBG_ASSERT( m_xCell.is(), "OCellValueBinding::getValue: don't have a double value supplier!" ); in getValue()
283 if ( m_xCell.is() ) in getValue()
284 aReturn <<= m_xCell->getValue(); in getValue()
290 … DBG_ASSERT( m_xCell.is(), "OCellValueBinding::getValue: don't have a double value supplier!" ); in getValue()
291 if ( m_xCell.is() ) in getValue()
296 sal_Int32 nValue = (sal_Int32) rtl::math::approxFloor( m_xCell->getValue() ); in getValue()
337 … DBG_ASSERT( m_xCell.is(), "OCellValueBinding::setValue: don't have a double value supplier!" ); in setValue()
346 if ( m_xCell.is() ) in setValue()
347 m_xCell->setValue( nCellValue ); in setValue()
355 … DBG_ASSERT( m_xCell.is(), "OCellValueBinding::setValue: don't have a double value supplier!" ); in setValue()
359 if ( m_xCell.is() ) in setValue()
360 m_xCell->setValue( nValue ); in setValue()
366 … DBG_ASSERT( m_xCell.is(), "OCellValueBinding::setValue: don't have a double value supplier!" ); in setValue()
371 if ( m_xCell.is() ) in setValue()
372 m_xCell->setValue( nValue ); in setValue()
380 Reference<XCellRangeData> xData( m_xCell, UNO_QUERY ); in setValue()
403 Reference<XPropertySet> xCellProp( m_xCell, UNO_QUERY ); in setBooleanFormat()
563 Reference<XInterface> xCellInt( m_xCell, UNO_QUERY ); in disposing()
567 m_xCell.clear(); in disposing()
620 m_xCell.set(xSheet->getCellByPosition( aAddress.Column, aAddress.Row )); in initialize()
621 Reference< XCellAddressable > xAddressAccess( m_xCell, UNO_QUERY ); in initialize()
631 if ( !m_xCell.is() ) in initialize()
635 m_xCellText.set(m_xCellText.query( m_xCell )); in initialize()
637 Reference<XModifyBroadcaster> xBroadcaster( m_xCell, UNO_QUERY ); in initialize()