Lines Matching refs:aPos

711         EPosition aPos( mpImpl->Index2Internal(nIndex) );  in getCharacter()  local
713 return mpImpl->GetParagraph( aPos.nPara ).getCharacter( aPos.nIndex ); in getCharacter()
722 EPosition aPos( mpImpl->Index2Internal(nIndex) ); in getCharacterAttributes() local
724 …return mpImpl->GetParagraph( aPos.nPara ).getCharacterAttributes( aPos.nIndex, aRequestedAttribute… in getCharacterAttributes()
733 EPosition aPos( mpImpl->Range2Internal(nIndex) ); in getCharacterBounds() local
736 AccessibleEditableTextPara& rPara = mpImpl->GetParagraph( aPos.nPara ); in getCharacterBounds()
738 awt::Rectangle aBounds( rPara.getCharacterBounds( aPos.nIndex ) ); in getCharacterBounds()
940 EPosition aPos( mpImpl->Range2Internal(nIndex) ); in getTextAtIndex() local
953 aResult.SegmentText = mpImpl->GetParagraph( aPos.nPara ).getText(); in getTextAtIndex()
956 aResult.SegmentStart = mpImpl->Internal2Index( EPosition( aPos.nPara, 0 ) ); in getTextAtIndex()
961 … SvxAccessibleTextAdapter& rTextForwarder = mpImpl->GetParagraph( aPos.nIndex ).GetTextForwarder(); in getTextAtIndex()
963 … if ( rTextForwarder.GetAttributeRun( nStartIndex, nEndIndex, aPos.nPara, aPos.nIndex, sal_True ) ) in getTextAtIndex()
973 aResult = mpImpl->GetParagraph( aPos.nPara ).getTextAtIndex( aPos.nIndex, aTextType ); in getTextAtIndex()
976 mpImpl->CorrectTextSegment( aResult, aPos.nPara ); in getTextAtIndex()
991 EPosition aPos( mpImpl->Range2Internal(nIndex) ); in getTextBeforeIndex() local
997 if( aPos.nIndex == mpImpl->GetParagraph( aPos.nPara ).getCharacterCount() ) in getTextBeforeIndex()
1000 aResult.SegmentText = mpImpl->GetParagraph( aPos.nPara ).getText(); in getTextBeforeIndex()
1003 aResult.SegmentStart = mpImpl->Internal2Index( EPosition( aPos.nPara, 0 ) ); in getTextBeforeIndex()
1005 else if( aPos.nPara > 0 ) in getTextBeforeIndex()
1007 aResult.SegmentText = mpImpl->GetParagraph( aPos.nPara - 1 ).getText(); in getTextBeforeIndex()
1010 aResult.SegmentStart = mpImpl->Internal2Index( EPosition( aPos.nPara - 1, 0 ) ); in getTextBeforeIndex()
1018 … aResult = mpImpl->GetParagraph( aPos.nPara ).getTextBeforeIndex( aPos.nIndex, aTextType ); in getTextBeforeIndex()
1021 mpImpl->CorrectTextSegment( aResult, aPos.nPara ); in getTextBeforeIndex()
1037 EPosition aPos( mpImpl->Range2Internal(nIndex) ); in getTextBehindIndex() local
1046 if( aPos.nPara + 1 < mpImpl->GetParagraphCount() ) in getTextBehindIndex()
1048 aResult.SegmentText = mpImpl->GetParagraph( aPos.nPara + 1 ).getText(); in getTextBehindIndex()
1051 aResult.SegmentStart = mpImpl->Internal2Index( EPosition( aPos.nPara + 1, 0 ) ); in getTextBehindIndex()
1058 … aResult = mpImpl->GetParagraph( aPos.nPara ).getTextBehindIndex( aPos.nIndex, aTextType ); in getTextBehindIndex()
1061 mpImpl->CorrectTextSegment( aResult, aPos.nPara ); in getTextBehindIndex()
1130 EPosition aPos( mpImpl->Index2Internal( nIndex ) ); in getRunAttributes() local
1131 AccessibleEditableTextPara& rPara = mpImpl->GetParagraph( aPos.nPara ); in getRunAttributes()
1133 …uno::Sequence< beans::PropertyValue > aRunAttrSeq = rPara.getRunAttributes( aPos.nIndex, Requested… in getRunAttributes()