Lines Matching refs:aResult

942         ::com::sun::star::accessibility::TextSegment aResult;  in getTextAtIndex()
953 aResult.SegmentText = mpImpl->GetParagraph( aPos.nPara ).getText(); in getTextAtIndex()
956 aResult.SegmentStart = mpImpl->Internal2Index( EPosition( aPos.nPara, 0 ) ); in getTextAtIndex()
957 aResult.SegmentEnd = aResult.SegmentStart + aResult.SegmentText.getLength(); in getTextAtIndex()
965 aResult.SegmentText = getTextRange( nStartIndex, nEndIndex ); in getTextAtIndex()
966 aResult.SegmentStart = nStartIndex; in getTextAtIndex()
967 aResult.SegmentEnd = nEndIndex; in getTextAtIndex()
973 aResult = mpImpl->GetParagraph( aPos.nPara ).getTextAtIndex( aPos.nIndex, aTextType ); in getTextAtIndex()
976 mpImpl->CorrectTextSegment( aResult, aPos.nPara ); in getTextAtIndex()
979 aResult.SegmentText = rtl::OUString(cNewLine); in getTextAtIndex()
983 return aResult; in getTextAtIndex()
993 ::com::sun::star::accessibility::TextSegment aResult; in getTextBeforeIndex()
1000 aResult.SegmentText = mpImpl->GetParagraph( aPos.nPara ).getText(); in getTextBeforeIndex()
1003 aResult.SegmentStart = mpImpl->Internal2Index( EPosition( 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()
1013 aResult.SegmentEnd = aResult.SegmentStart + aResult.SegmentText.getLength(); in getTextBeforeIndex()
1018aResult = mpImpl->GetParagraph( aPos.nPara ).getTextBeforeIndex( aPos.nIndex, aTextType ); in getTextBeforeIndex()
1021 mpImpl->CorrectTextSegment( aResult, aPos.nPara ); in getTextBeforeIndex()
1024 aResult = getTextAtIndex( nOldIdx-1, aTextType ); in getTextBeforeIndex()
1028 return aResult; in getTextBeforeIndex()
1039 ::com::sun::star::accessibility::TextSegment aResult; 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()
1052 aResult.SegmentEnd = aResult.SegmentStart + aResult.SegmentText.getLength(); in getTextBehindIndex()
1058aResult = mpImpl->GetParagraph( aPos.nPara ).getTextBehindIndex( aPos.nIndex, aTextType ); in getTextBehindIndex()
1061 mpImpl->CorrectTextSegment( aResult, aPos.nPara ); in getTextBehindIndex()
1064 aResult.SegmentText = rtl::OUString(cNewLine) + aResult.SegmentText; in getTextBehindIndex()
1068 return aResult; in getTextBehindIndex()