Lines Matching refs:aBound

744     Boundary aBound;  in NextWord()  local
780 aBound = pBreakIt->GetBreakIter()->getWordBoundary( rText, nBegin, in NextWord()
782 ASSERT( aBound.endPos >= aBound.startPos, "broken aBound result" ); in NextWord()
785 if(aBound.endPos == aBound.startPos) in NextWord()
789 if(aBound.endPos == nBegin) in NextWord()
800 nBegin = Max( static_cast< xub_StrLen >(aBound.startPos), nBegin ); in NextWord()
802 if (static_cast< xub_StrLen >(aBound.endPos) > nBegin) in NextWord()
803 nLen = static_cast< xub_StrLen >(aBound.endPos) - nBegin; in NextWord()
808 if ( aBound.startPos <= nBegin ) in NextWord()
810 ASSERT( aBound.endPos >= nBegin, "Unexpected aBound result" ) in NextWord()
814 … XubString aTmpWord = rText.Copy( nBegin, static_cast<xub_StrLen>(aBound.endPos - nBegin) ); in NextWord()
817 const sal_Int32 nEnd = Min( aBound.endPos, nScriptEnd ); in NextWord()
821 if ( aBound.startPos < nBegin ) in NextWord()
824 aTmpWord = rText.Copy( static_cast<xub_StrLen>(aBound.startPos), in NextWord()
825 static_cast<xub_StrLen>(nBegin - aBound.startPos + 1) ); in NextWord()
826 nScriptBegin = aBound.startPos + in NextWord()
827 pBreakIt->GetBreakIter()->beginOfScript( aTmpWord, nBegin - aBound.startPos, in NextWord()
831 nBegin = (xub_StrLen)Max( aBound.startPos, nScriptBegin ); in NextWord()
836 … const sal_uInt16 nCurrScript = pBreakIt->GetBreakIter()->getScriptType( rText, aBound.startPos ); in NextWord()
837 XubString aTmpWord = rText.Copy( static_cast<xub_StrLen>(aBound.startPos), in NextWord()
838 … static_cast<xub_StrLen>(aBound.endPos - aBound.startPos) ); in NextWord()
839 const sal_Int32 nScriptEnd = aBound.startPos + in NextWord()
841 const sal_Int32 nEnd = Min( aBound.endPos, nScriptEnd ); in NextWord()
842 nBegin = (xub_StrLen)aBound.startPos; in NextWord()
850 aBound.startPos = Max( (xub_StrLen)aBound.startPos, nStartPos ); in NextWord()
851 aBound.endPos = Min( (xub_StrLen)aBound.endPos, nEndPos ); in NextWord()
852 nBegin = (xub_StrLen)aBound.startPos; in NextWord()
853 nLen = (xub_StrLen)(aBound.endPos - nBegin); in NextWord()
1212 Boundary aBound = in _AutoSpell() local
1216 nBegin = xub_StrLen(aBound.startPos); in _AutoSpell()