Lines Matching refs:nIndex

348 ::sal_Bool SAL_CALL ParagraphImpl::setCaretPosition(::sal_Int32 nIndex)  in setCaretPosition()  argument
353 m_xDocument->changeParagraphSelection(this, nIndex, nIndex); in setCaretPosition()
358 ::sal_Unicode SAL_CALL ParagraphImpl::getCharacter(::sal_Int32 nIndex) in getCharacter() argument
363 return OCommonAccessibleText::getCharacter(nIndex); in getCharacter()
368 ParagraphImpl::getCharacterAttributes(::sal_Int32 nIndex, const ::com::sun::star::uno::Sequence< ::… in getCharacterAttributes() argument
373 return m_xDocument->retrieveCharacterAttributes( this, nIndex, aRequestedAttributes ); in getCharacterAttributes()
378 ParagraphImpl::getCharacterBounds(::sal_Int32 nIndex) in getCharacterBounds() argument
383 ::css::awt::Rectangle aBounds(m_xDocument->retrieveCharacterBounds(this, nIndex)); in getCharacterBounds()
466 …ssibility::TextSegment SAL_CALL ParagraphImpl::getTextAtIndex( sal_Int32 nIndex, sal_Int16 aTextTy… in getTextAtIndex() argument
469 return OCommonAccessibleText::getTextAtIndex(nIndex, aTextType); in getTextAtIndex()
473 …ility::TextSegment SAL_CALL ParagraphImpl::getTextBeforeIndex( sal_Int32 nIndex, sal_Int16 aTextTy… in getTextBeforeIndex() argument
476 return OCommonAccessibleText::getTextBeforeIndex(nIndex, aTextType); in getTextBeforeIndex()
480 …ility::TextSegment SAL_CALL ParagraphImpl::getTextBehindIndex( sal_Int32 nIndex, sal_Int16 aTextTy… in getTextBehindIndex() argument
483 return OCommonAccessibleText::getTextBehindIndex(nIndex, aTextType); in getTextBehindIndex()
510 ::sal_Bool SAL_CALL ParagraphImpl::pasteText(::sal_Int32 nIndex) in pasteText() argument
515 m_xDocument->changeParagraphText(this, nIndex, nIndex, false, true, in pasteText()
534 ::sal_Int32 nIndex) in insertText() argument
539 m_xDocument->changeParagraphText(this, nIndex, nIndex, false, false, rText); in insertText()
598 ::sal_Int32 SAL_CALL ParagraphImpl::getLineNumberAtIndex( ::sal_Int32 nIndex ) in getLineNumberAtIndex() argument
606 m_xDocument->retrieveParagraphLineBoundary( this, nIndex, &nLineNo ); in getLineNumberAtIndex()
740 ::sal_Int32 nIndex ) in implGetParagraphBoundary() argument
745 if ( implIsValidIndex( nIndex, nLength ) ) in implGetParagraphBoundary()
752 rBoundary.startPos = nIndex; in implGetParagraphBoundary()
753 rBoundary.endPos = nIndex; in implGetParagraphBoundary()
759 ::sal_Int32 nIndex ) in implGetLineBoundary() argument
764 if ( implIsValidIndex( nIndex, nLength ) || nIndex == nLength ) in implGetLineBoundary()
767 m_xDocument->retrieveParagraphLineBoundary( this, nIndex ); in implGetLineBoundary()
773 rBoundary.startPos = nIndex; in implGetLineBoundary()
774 rBoundary.endPos = nIndex; in implGetLineBoundary()
951 ::sal_Int32 nIndex) in retrieveCharacterBounds() argument
958 if (nIndex < 0 || nIndex > nLength) in retrieveCharacterBounds()
966 if ( nIndex == nLength ) in retrieveCharacterBounds()
970 static_cast< ::sal_uInt16 >(nIndex)))); in retrieveCharacterBounds()
976 static_cast< ::sal_uInt16 >(nIndex)))); in retrieveCharacterBounds()
980 static_cast< ::sal_uInt16 >(nIndex) in retrieveCharacterBounds()
1029 ParagraphImpl const * pParagraph, ::sal_Int32 nIndex, in retrieveCharacterAttributes() argument
1124 if (nIndex < 0 || nIndex > m_rEngine.GetText(nNumber).Len()) in retrieveCharacterAttributes()
1138 retrieveRunAttributesImpl( pParagraph, nIndex, aRequestedAttributes, aRunAttrSeq ); in retrieveCharacterAttributes()
1416 ::sal_Int32 nIndex, ::sal_Int32 *pLineNo ) in retrieveParagraphLineBoundary() argument
1419 aBoundary.startPos = nIndex; in retrieveParagraphLineBoundary()
1420 aBoundary.endPos = nIndex; in retrieveParagraphLineBoundary()
1426 if ( nIndex < 0 || nIndex > m_rEngine.GetText( nNumber ).Len() ) in retrieveParagraphLineBoundary()
1442 …if ( nIndex >= nLineStart && ( ( nLine == nLineCount - 1 ) ? nIndex <= nLineEnd : nIndex < nLineEn… in retrieveParagraphLineBoundary()