Lines Matching refs:aBound

738     Boundary aBound;  in NextWord()  local
774 aBound = pBreakIt->GetBreakIter()->getWordBoundary( rText, nBegin, in NextWord()
776 ASSERT( aBound.endPos >= aBound.startPos, "broken aBound result" ); in NextWord()
779 if(aBound.endPos == aBound.startPos) in NextWord()
783 if(aBound.endPos == nBegin) in NextWord()
794 nBegin = Max( static_cast< xub_StrLen >(aBound.startPos), nBegin ); in NextWord()
796 if (static_cast< xub_StrLen >(aBound.endPos) > nBegin) in NextWord()
797 nLen = static_cast< xub_StrLen >(aBound.endPos) - nBegin; in NextWord()
802 if ( aBound.startPos <= nBegin ) in NextWord()
804 ASSERT( aBound.endPos >= nBegin, "Unexpected aBound result" ) in NextWord()
808 … XubString aTmpWord = rText.Copy( nBegin, static_cast<xub_StrLen>(aBound.endPos - nBegin) ); in NextWord()
811 const sal_Int32 nEnd = Min( aBound.endPos, nScriptEnd ); in NextWord()
815 if ( aBound.startPos < nBegin ) in NextWord()
818 aTmpWord = rText.Copy( static_cast<xub_StrLen>(aBound.startPos), in NextWord()
819 static_cast<xub_StrLen>(nBegin - aBound.startPos + 1) ); in NextWord()
820 nScriptBegin = aBound.startPos + in NextWord()
821 pBreakIt->GetBreakIter()->beginOfScript( aTmpWord, nBegin - aBound.startPos, in NextWord()
825 nBegin = (xub_StrLen)Max( aBound.startPos, nScriptBegin ); in NextWord()
830 … const sal_uInt16 nCurrScript = pBreakIt->GetBreakIter()->getScriptType( rText, aBound.startPos ); in NextWord()
831 XubString aTmpWord = rText.Copy( static_cast<xub_StrLen>(aBound.startPos), in NextWord()
832 … static_cast<xub_StrLen>(aBound.endPos - aBound.startPos) ); in NextWord()
833 const sal_Int32 nScriptEnd = aBound.startPos + in NextWord()
835 const sal_Int32 nEnd = Min( aBound.endPos, nScriptEnd ); in NextWord()
836 nBegin = (xub_StrLen)aBound.startPos; in NextWord()
844 aBound.startPos = Max( (xub_StrLen)aBound.startPos, nStartPos ); in NextWord()
845 aBound.endPos = Min( (xub_StrLen)aBound.endPos, nEndPos ); in NextWord()
846 nBegin = (xub_StrLen)aBound.startPos; in NextWord()
847 nLen = (xub_StrLen)(aBound.endPos - nBegin); in NextWord()
1206 Boundary aBound = in _AutoSpell() local
1210 nBegin = xub_StrLen(aBound.startPos); in _AutoSpell()