Searched refs:nRowIndex (Results 1 – 9 of 9) sorted by relevance
| /AOO41X/main/chart2/source/tools/ |
| H A D | InternalData.cxx | 168 Sequence< double > InternalData::getRowValues( sal_Int32 nRowIndex ) const in getRowValues() 170 if( nRowIndex >= 0 && nRowIndex < m_nRowCount ) in getRowValues() 172 m_aData[ ::std::slice( nRowIndex*m_nColumnCount, m_nColumnCount, 1 ) ] ); in getRowValues() 188 void InternalData::setRowValues( sal_Int32 nRowIndex, const vector< double > & rNewData ) in setRowValues() argument 190 if( nRowIndex < 0 ) in setRowValues() 192 enlargeData( rNewData.size(), nRowIndex+1 ); in setRowValues() 194 tDataType aSlice = m_aData[ ::std::slice( nRowIndex*m_nColumnCount, m_nColumnCount, 1 ) ]; in setRowValues() 197 m_aData[ ::std::slice( nRowIndex*m_nColumnCount, m_nColumnCount, 1 ) ]= aSlice; in setRowValues() 212 void InternalData::setComplexRowLabel( sal_Int32 nRowIndex, const vector< uno::Any >& rComplexLabel… in setComplexRowLabel() argument 214 if( nRowIndex < 0 ) in setComplexRowLabel() [all …]
|
| /AOO41X/main/chart2/source/inc/ |
| H A D | InternalData.hxx | 47 ::com::sun::star::uno::Sequence< double > getRowValues( sal_Int32 nRowIndex ) const; 50 void setRowValues( sal_Int32 nRowIndex, const ::std::vector< double > & rNewData ); 53 …void setComplexRowLabel( sal_Int32 nRowIndex, const ::std::vector< ::com::sun::star::uno::Any >& r… 56 ::std::vector< ::com::sun::star::uno::Any > getComplexRowLabel( sal_Int32 nRowIndex ) const; 58 void swapRowWithNext( sal_Int32 nRowIndex );
|
| /AOO41X/main/sc/source/ui/Accessibility/ |
| H A D | AccessiblePreviewTable.cxx | 518 SCROW nRowIndex = 0; in getAccessibleAtPoint() local 519 while ( nRowIndex < nRows && aMovedPoint.Y > pRowInfo[nRowIndex].nPixelEnd ) in getAccessibleAtPoint() 520 ++nRowIndex; in getAccessibleAtPoint() 521 if ( nColIndex < nCols && nRowIndex < nRows ) in getAccessibleAtPoint() 525 xRet = getAccessibleCellAt( nRowIndex, nColIndex ); in getAccessibleAtPoint()
|
| /AOO41X/main/xmloff/source/chart/ |
| H A D | SchXMLTableContext.cxx | 315 mrTable.nRowIndex = -1; in SchXMLTableContext() 659 mrTable.nRowIndex++; in SchXMLTableRowContext() 663 while( mrTable.aData.size() <= (unsigned long)mrTable.nRowIndex ) in SchXMLTableRowContext() 791 mrTable.aData[ mrTable.nRowIndex ].push_back( aCell ); in StartElement() 807 SchXMLCell& rCell = mrTable.aData[ mrTable.nRowIndex ][ mrTable.nColumnIndex ]; in CreateChildContext() 836 mrTable.aData[ mrTable.nRowIndex ][ mrTable.nColumnIndex ].aString = maCellContent; in EndElement() 838 mrTable.aData[ mrTable.nRowIndex ][ mrTable.nColumnIndex ].aRangeId = maRangeId; in EndElement()
|
| H A D | transporttypes.hxx | 73 …sal_Int32 nRowIndex; /// reflects the index of the row currently pa… member 88 SchXMLTable() : nRowIndex( -1 ), in SchXMLTable()
|
| /AOO41X/main/soldep/source/ |
| H A D | soldep.cxx | 1141 int nRowIndex = nIndex / DEPPER_MAX_WIDTH; in CalcPos() local 1142 …sal_uIntPtr nPosX = mnXOffset + nRowIndex % 3 * GetDefSize().Width() / 3 + ( nIndex - ( DEPPER_MAX… in CalcPos() 1144 …sal_uIntPtr nPosY = ( nSet + mnLevelOffset + nRowIndex ) * ( GetDefSize().Height() + OBJWIN_Y_SPAC… in CalcPos()
|
| /AOO41X/main/sc/source/ui/vba/ |
| H A D | vbarange.cxx | 2122 ScVbaRange::Cells( const uno::Any &nRowIndex, const uno::Any &nColumnIndex ) throw(uno::RuntimeExce… in Cells() argument 2131 return xRange->Cells( nRowIndex, nColumnIndex ); in Cells() 2136 return CellsHelper( mxParent, mxContext, mxRange, nRowIndex, nColumnIndex ); in Cells() 2144 … const uno::Any &nRowIndex, const uno::Any &nColumnIndex ) throw(uno::RuntimeException) in CellsHelper() argument 2148 sal_Bool bIsIndex = nRowIndex.hasValue(); in CellsHelper() 2155 if ( nRowIndex.hasValue() && !( nRowIndex >>= nRow ) ) in CellsHelper() 2161 aConverted = xConverter->convertTo( nRowIndex, getCppuType((sal_Int32*)0) ); in CellsHelper()
|
| H A D | vbarange.hxx | 160 …const css::uno::Any &nRowIndex, const css::uno::Any &nColumnIndex ) throw(css::uno::RuntimeExcepti…
|
| /AOO41X/main/sc/source/ui/unoobj/ |
| H A D | cellsuno.cxx | 5276 for (SCROW nRowIndex = 0; nRowIndex < nRowCount; nRowIndex++) in getFormulaArray() local 5282 … ScAddress( nStartCol+nColIndex, nStartRow+nRowIndex, nTab ), sal_True ); in getFormulaArray() 5284 pRowAry[nRowIndex] = aColSeq; in getFormulaArray()
|