Lines Matching refs:nIndex

95     uno::Reference<XAccessible> GetChild(sal_Int32 nIndex) const;
178 for (sal_Int32 nIndex = 0; nIndex < nCount; ++nIndex) in AddNotes() local
180 if (rData.GetNoteInRange(rVisRect, nIndex, bMark, aNote.maNoteCell, aNote.maRect)) in AddNotes()
223 ScParaFound(sal_Int32 nIndex) : mnIndex(nIndex) {} in ScParaFound()
235 uno::Reference<XAccessible> ScNotesChilds::GetChild(sal_Int32 nIndex) const in GetChild()
239 if (nIndex < mnParagraphs) in GetChild()
241 if (nIndex < static_cast<sal_Int32>(maMarks.size())) in GetChild()
244 ScParaFound aParaFound(nIndex); in GetChild()
248 …DBG_ASSERT((aItr->maNoteCell == maMarks[nIndex].maNoteCell) && (aItr->mbMarkNote == maMarks[nIndex in GetChild()
255 …eateTextHelper(maMarks[nIndex].maNoteText, maMarks[nIndex].maRect, maMarks[nIndex].maNoteCell, maM… in GetChild()
260 nIndex -= maMarks.size(); in GetChild()
262 ScParaFound aParaFound(nIndex); in GetChild()
267 …per(aItr->maNoteText, aItr->maRect, aItr->maNoteCell, aItr->mbMarkNote, (nIndex - aParaFound.mnInd… in GetChild()
355 for (sal_Int32 nIndex = 0; nIndex < nCount; ++nIndex) in CheckChanges() local
357 if (rData.GetNoteInRange(rVisRect, nIndex, bMark, aNote.maNoteCell, aNote.maRect)) in CheckChanges()
712 uno::Reference<XAccessible> GetBackShape(sal_Int32 nIndex) const;
714 uno::Reference<XAccessible> GetForeShape(sal_Int32 nIndex) const;
716 uno::Reference<XAccessible> GetControl(sal_Int32 nIndex) const;
732 …::accessibility::AccessibleShape* GetAccShape(const ScShapeChildVec& rShapes, sal_Int32 nIndex) co…
959 uno::Reference<XAccessible> ScShapeChilds::GetBackShape(sal_Int32 nIndex) const in GetBackShape()
967 if(nIndex < nCount) in GetBackShape()
968 xAccessible = GetAccShape(aItr->maBackShapes, nIndex); in GetBackShape()
971 nIndex -= nCount; in GetBackShape()
974 if (nIndex >= 0) in GetBackShape()
989 uno::Reference<XAccessible> ScShapeChilds::GetForeShape(sal_Int32 nIndex) const in GetForeShape()
997 if(nIndex < nCount) in GetForeShape()
998 xAccessible = GetAccShape(aItr->maForeShapes, nIndex); in GetForeShape()
1001 nIndex -= nCount; in GetForeShape()
1004 if (nIndex >= 0) in GetForeShape()
1019 uno::Reference<XAccessible> ScShapeChilds::GetControl(sal_Int32 nIndex) const in GetControl()
1027 if(nIndex < nCount) in GetControl()
1028 xAccessible = GetAccShape(aItr->maControls, nIndex); in GetControl()
1031 nIndex -= nCount; in GetControl()
1034 if (nIndex >= 0) in GetControl()
1120 …AccessibleShape* ScShapeChilds::GetAccShape(const ScShapeChildVec& rShapes, sal_Int32 nIndex) const in GetAccShape()
1122 return (GetAccShape(rShapes[nIndex])); in GetAccShape()
1538 sal_Int32 nIndex (aCount.nBackShapes + aCount.nHeaders); in Notify() local
1540 mpTable = new ScAccessiblePreviewTable( this, mpViewShell, nIndex ); in Notify()
1622 sal_Int32 nIndex (aCount.nBackShapes + aCount.nHeaders); in getAccessibleAtPoint() local
1624 mpTable = new ScAccessiblePreviewTable( this, mpViewShell, nIndex ); in getAccessibleAtPoint()
1699 …ference<XAccessible> SAL_CALL ScAccessibleDocumentPagePreview::getAccessibleChild(sal_Int32 nIndex) in getAccessibleChild() argument
1711 if ( nIndex < aCount.nBackShapes ) in getAccessibleChild()
1713 xAccessible = GetShapeChilds()->GetBackShape(nIndex); in getAccessibleChild()
1715 else if ( nIndex < aCount.nBackShapes + aCount.nHeaders ) in getAccessibleChild()
1719 mpHeader = new ScAccessiblePageHeader( this, mpViewShell, sal_True, nIndex ); in getAccessibleChild()
1725 else if ( nIndex < aCount.nBackShapes + aCount.nHeaders + aCount.nTables ) in getAccessibleChild()
1729 mpTable = new ScAccessiblePreviewTable( this, mpViewShell, nIndex ); in getAccessibleChild()
1735 else if ( nIndex < aCount.nBackShapes + aCount.nHeaders + aCount.nNoteParagraphs ) in getAccessibleChild()
1737 xAccessible = GetNotesChilds()->GetChild(nIndex - aCount.nBackShapes - aCount.nHeaders); in getAccessibleChild()
1739 …else if ( (nIndex < aCount.nBackShapes + aCount.nHeaders + aCount.nTables + aCount.nNoteParagraphs… in getAccessibleChild()
1743 mpFooter = new ScAccessiblePageHeader( this, mpViewShell, sal_False, nIndex ); in getAccessibleChild()
1750 …sal_Int32 nIdx(nIndex - (aCount.nBackShapes + aCount.nHeaders + aCount.nTables + aCount.nNoteParag… in getAccessibleChild()