Lines Matching refs:i

228     xub_StrLen i;  in EnableLRBtn_Impl()  local
231 for ( i = nOldPos + 2; i < nLen; ++i ) in EnableLRBtn_Impl()
233 if ( aTxt.GetChar( i ) == sal_Unicode( HYPH_POS_CHAR ) ) in EnableLRBtn_Impl()
244 for ( i = nOldPos; i-- > 0; ) in EnableLRBtn_Impl()
246 if ( aTxt.GetChar( i ) == sal_Unicode( HYPH_POS_CHAR ) ) in EnableLRBtn_Impl()
306 for (sal_Int32 i = 0; i < nLen; ++i) in EraseUnusableHyphens_Impl() local
308 if (pHyphenationPos[i] > _nMaxHyphenationPos) in EraseUnusableHyphens_Impl()
384 for (sal_uInt16 i = 0; i <= nInsPos; ++i) in ContinueHyph_Impl() local
386 if (HYPH_POS_CHAR == aTmp.GetChar( i )) in ContinueHyph_Impl()
434 for ( sal_uInt16 i=0 ; i < aTxt.Len(); ++i ) in GetHyphIndex_Impl() local
436 sal_Unicode cChar = aTxt.GetChar( i ); in GetHyphIndex_Impl()
452 for ( xub_StrLen i = nOldPos - 1; i > 0; --i) in SelLeft_Impl() local
454 DBG_ASSERT(i <= aTxt.Len(), "index out of range"); in SelLeft_Impl()
455 if (aTxt.GetChar( i ) == sal_Unicode( HYPH_POS_CHAR )) in SelLeft_Impl()
457 aTxt.SetChar( i, sal_Unicode( CUR_HYPH_POS_CHAR ) ); in SelLeft_Impl()
459 nOldPos = i; in SelLeft_Impl()
462 aWordEdit.SetSelection( Selection( i, i + 1 ) ); in SelLeft_Impl()
475 for ( xub_StrLen i = nOldPos + 1; i < aTxt.Len(); ++i ) in SelRight_Impl() local
477 if (aTxt.GetChar( i ) == sal_Unicode( HYPH_POS_CHAR )) in SelRight_Impl()
479 aTxt.SetChar( i, sal_Unicode( CUR_HYPH_POS_CHAR ) ); in SelRight_Impl()
481 nOldPos = i; in SelRight_Impl()
484 aWordEdit.SetSelection( Selection( i, i + 1 ) ); in SelRight_Impl()