Lines Matching refs:rText

425     const ::rtl::OUString& rText = GetString();  in _InvalidateContent()  local
427 if( rText != sOldText ) in _InvalidateContent()
435 sOldText, rText, in _InvalidateContent()
469 if( bNewIsHeading != bOldIsHeading || rText != sOldText ) in _InvalidateContent()
806 const ::rtl::OUString& rText, in GetWordBoundary()
865 rText, nPos, aLocale, nWordType, sal_True ); in GetWordBoundary()
869 rText.getStr()[ rBound.startPos ] ); in GetWordBoundary()
883 const ::rtl::OUString& rText, in GetSentenceBoundary()
886 const sal_Unicode* pStr = rText.getStr(); in GetSentenceBoundary()
889 while( pStr[nPos] == sal_Unicode(' ') && nPos < rText.getLength()) in GetSentenceBoundary()
898 const ::rtl::OUString& rText, in GetLineBoundary()
901 if( rText.getLength() == nPos ) in GetLineBoundary()
910 const ::rtl::OUString& rText, in GetParagraphBoundary()
914 rBound.endPos = rText.getLength(); in GetParagraphBoundary()
929 const ::rtl::OUString& rText, in GetGlyphBoundary()
949 rText, nPos, aLocale, nIterMode, 1, nDone ); in GetGlyphBoundary()
951 rText, rBound.endPos, aLocale, nIterMode, 1, nDone ); in GetGlyphBoundary()
970 const ::rtl::OUString& rText, in GetTextBoundary()
980 ? IsValidPosition( nPos, rText.getLength() ) in GetTextBoundary()
981 : IsValidChar( nPos, rText.getLength() ) ) ) in GetTextBoundary()
989 bRet = GetWordBoundary( rBound, rText, nPos ); in GetTextBoundary()
993 bRet = GetSentenceBoundary( rBound, rText, nPos ); in GetTextBoundary()
997 bRet = GetParagraphBoundary( rBound, rText, nPos ); in GetTextBoundary()
1001 bRet = GetCharBoundary( rBound, rText, nPos ); in GetTextBoundary()
1006 if((nPos == rText.getLength()) && nPos > 0) in GetTextBoundary()
1007 bRet = GetLineBoundary( rBound, rText, nPos - 1); in GetTextBoundary()
1009 bRet = GetLineBoundary( rBound, rText, nPos ); in GetTextBoundary()
1013 bRet = GetAttributeBoundary( rBound, rText, nPos ); in GetTextBoundary()
1078 bRet = GetGlyphBoundary( rBound, rText, nPos ); in GetTextBoundary()
1826 const ::rtl::OUString& rText = GetString(); in getCharacterAttributes() local
1828 if( ! IsValidChar( nIndex, rText.getLength()+1 ) ) in getCharacterAttributes()
2324 const ::rtl::OUString& rText = GetString(); in getRunAttributes() local
2325 if ( !IsValidChar( nIndex, rText.getLength() ) ) in getRunAttributes()
2910 const ::rtl::OUString rText = GetString(); in getTextAtIndex() local
2915 if( nIndex == rText.getLength() && AccessibleTextType::LINE != nTextType ) in getTextAtIndex()
2920 sal_Bool bWord = GetTextBoundary( aBound, rText, nIndex, nTextType ); in getTextAtIndex()
2928 aResult.SegmentText = rText.copy( aBound.startPos, aBound.endPos - aBound.startPos ); in getTextAtIndex()
2942 const ::rtl::OUString rText = GetString(); in getTextBeforeIndex() local
2954 if (nIndex == rText.getLength()) in getTextBeforeIndex()
2958 sal_Bool bTmp = GetTextBoundary( aBound, rText, nIndex, nTextType ); in getTextBeforeIndex()
2972 GetTextBoundary( preBound, rText, nIndex, nTextType ); in getTextBeforeIndex()
2978 aResult.SegmentText = rText.copy( preBound.startPos, preBound.endPos - preBound.startPos ); in getTextBeforeIndex()
2991 bWord = GetTextBoundary( aBound, rText, nIndex, nTextType ); in getTextBeforeIndex()
2997 if (bWord && nIndex<rText.getLength()) in getTextBeforeIndex()
2999 aResult.SegmentText = rText.copy( aBound.startPos, aBound.endPos - aBound.startPos ); in getTextBeforeIndex()
3016 const ::rtl::OUString rText = GetString(); in getTextBehindIndex() local
3021 if( nIndex == rText.getLength() ) in getTextBehindIndex()
3027 GetTextBoundary( aBound, rText, nIndex, nTextType ); in getTextBehindIndex()
3032 if( nIndex < rText.getLength() ) in getTextBehindIndex()
3033 bWord = GetTextBoundary( aBound, rText, nIndex, nTextType ); in getTextBehindIndex()
3040 aResult.SegmentText = rText.copy( aBound.startPos, aBound.endPos - aBound.startPos ); in getTextBehindIndex()
3173 const ::rtl::OUString& rText = GetString(); in replaceText() local
3175 if( IsValidRange( nStartIndex, nEndIndex, rText.getLength() ) ) in replaceText()
3224 const ::rtl::OUString& rText = GetString(); in setAttributes() local
3226 if( ! IsValidRange( nStartIndex, nEndIndex, rText.getLength() ) ) in setAttributes()
3991 const ::rtl::OUString rText = GetString(); in getTextAtLineNumber() local
3992 aTextAtLine.SegmentText = rText.copy( aLineBound.startPos, in getTextAtLineNumber()