Lines Matching refs:nIndex

497     for( sal_Int32 nIndex = nEnd - 1; nIndex >= nBegin; --nIndex )  in lcl_increaseMapReferences()  local
499 lcl_adaptMapReferences( OUString::valueOf( nIndex ), in lcl_increaseMapReferences()
500 OUString::valueOf( nIndex + 1 )); in lcl_increaseMapReferences()
501 lcl_adaptMapReferences( lcl_aLabelRangePrefix + OUString::valueOf( nIndex ), in lcl_increaseMapReferences()
502 lcl_aLabelRangePrefix + OUString::valueOf( nIndex + 1 )); in lcl_increaseMapReferences()
509 for( sal_Int32 nIndex = nBegin; nIndex < nEnd; ++nIndex ) in lcl_decreaseMapReferences() local
511 lcl_adaptMapReferences( OUString::valueOf( nIndex ), in lcl_decreaseMapReferences()
512 OUString::valueOf( nIndex - 1 )); in lcl_decreaseMapReferences()
513 lcl_adaptMapReferences( lcl_aLabelRangePrefix + OUString::valueOf( nIndex ), in lcl_decreaseMapReferences()
514 lcl_aLabelRangePrefix + OUString::valueOf( nIndex - 1 )); in lcl_decreaseMapReferences()
705 sal_Int32 nIndex = aRangeRepresentation.copy( lcl_aLabelRangePrefix.getLength()).toInt32(); in createDataSequenceByRangeRepresentation() local
706 … return lcl_createDataSequenceAndAddToMap( lcl_aLabelRangePrefix + OUString::valueOf( nIndex )); in createDataSequenceByRangeRepresentation()
710 sal_Int32 nIndex = (m_bDataInColumns in createDataSequenceByRangeRepresentation() local
713 return lcl_createDataSequenceAndAddToMap( OUString::valueOf( nIndex )); in createDataSequenceByRangeRepresentation()
718 sal_Int32 nIndex = aRangeRepresentation.toInt32(); in createDataSequenceByRangeRepresentation() local
719 return lcl_createDataSequenceAndAddToMap( OUString::valueOf( nIndex )); in createDataSequenceByRangeRepresentation()
745 sal_Int32 nIndex = aRange.copy( lcl_aLabelRangePrefix.getLength()).toInt32(); in hasDataByRangeRepresentation() local
746 …bResult = (nIndex < (m_bDataInColumns ? m_aInternalData.getColumnCount(): m_aInternalData.getRowCo… in hasDataByRangeRepresentation()
750 sal_Int32 nIndex = aRange.toInt32(); in hasDataByRangeRepresentation() local
751 …bResult = (nIndex < (m_bDataInColumns ? m_aInternalData.getColumnCount(): m_aInternalData.getRowCo… in hasDataByRangeRepresentation()
764 sal_Int32 nIndex = aRange.copy( lcl_aLabelRangePrefix.getLength()).toInt32(); in getDataByRangeRepresentation() local
766 ? m_aInternalData.getComplexColumnLabel( nIndex ) in getDataByRangeRepresentation()
767 : m_aInternalData.getComplexRowLabel( nIndex ); in getDataByRangeRepresentation()
810 sal_Int32 nIndex = aRange.toInt32(); in getDataByRangeRepresentation() local
811 if( nIndex >= 0 ) in getDataByRangeRepresentation()
815 aData = m_aInternalData.getColumnValues(nIndex); in getDataByRangeRepresentation()
817 aData = m_aInternalData.getRowValues(nIndex); in getDataByRangeRepresentation()
837 sal_uInt32 nIndex = aRange.copy( lcl_aLabelRangePrefix.getLength()).toInt32(); in setDataByRangeRepresentation() local
839 m_aInternalData.setComplexColumnLabel( nIndex, aNewVector ); in setDataByRangeRepresentation()
841 m_aInternalData.setComplexRowLabel( nIndex, aNewVector ); in setDataByRangeRepresentation()
883 sal_Int32 nIndex = aRange.toInt32(); in setDataByRangeRepresentation() local
884 if( nIndex>=0 ) in setDataByRangeRepresentation()
890 m_aInternalData.setColumnValues( nIndex, aNewDataVec ); in setDataByRangeRepresentation()
892 m_aInternalData.setRowValues( nIndex, aNewDataVec ); in setDataByRangeRepresentation()
1082 sal_Int32 nIndex = aRangeRepresentation.copy( lcl_aLabelRangePrefix.getLength()).toInt32(); in convertRangeToXML() local
1087 aRange.aUpperLeft.nColumn = nIndex + 1; in convertRangeToXML()
1093 aRange.aUpperLeft.nRow = nIndex + 1; in convertRangeToXML()
1107 sal_Int32 nIndex = aRangeRepresentation.toInt32(); in convertRangeToXML() local
1111 aRange.aUpperLeft.nColumn = nIndex + 1; in convertRangeToXML()
1119 aRange.aUpperLeft.nRow = nIndex + 1; in convertRangeToXML()
1234 virtual uno::Sequence< rtl::OUString > getStringsForLevel( sal_Int32 nIndex ) const;