Lines Matching refs:nStart

1671 …long nStart = rPaM.GetIndex() ? _xBI->beginOfSentence( sParagraph, rPaM.GetIndex(), GetLocale( rPa…  in SelectSentence()  local
1675 DBG_ASSERT(nStart < pNode->Len() && nEnd <= pNode->Len(), "sentence indices out of range"); in SelectSentence()
1676 aNewSel.Min().SetIndex( (sal_uInt16)nStart ); in SelectSentence()
1705 bool lcl_HasStrongLTR ( const String& rTxt, xub_StrLen nStart, xub_StrLen nEnd ) in lcl_HasStrongLTR() argument
1707 for ( xub_StrLen nCharIdx = nStart; nCharIdx < nEnd; ++nCharIdx ) in lcl_HasStrongLTR()
1817 const xub_StrLen nStart = rDirInfos[n].nStartPos; in InitScriptTypes() local
1822 …( nCurrDirType > UBIDI_LTR && !lcl_HasStrongLTR( aText, nStart, nEnd ) ) ) // non-strong text in e… in InitScriptTypes()
1827 while ( nIdx < rTypes.size() && rTypes[nIdx].nStartPos < nStart ) in InitScriptTypes()
1835 … if(nIdx < rTypes.size() && rTypes[nIdx].nStartPos < nStart && rTypes[nIdx].nEndPos > nEnd) in InitScriptTypes()
1838 rTypes[nIdx].nEndPos = nStart; in InitScriptTypes()
1842 rTypes[nIdx - 1].nEndPos = nStart; in InitScriptTypes()
1844 ….begin()+nIdx, ScriptTypePosInfo( i18n::ScriptType::COMPLEX, (sal_uInt16)nStart, (sal_uInt16)nEnd)… in InitScriptTypes()
2019 int32_t nStart = 0; in InitWritingDirections() local
2025 ubidi_getLogicalRun( pBidi, nStart, &nEnd, &nCurrDir ); in InitWritingDirections()
2026 … rInfos.push_back( WritingDirectionInfo( nCurrDir, (sal_uInt16)nStart, (sal_uInt16)nEnd ) ); in InitWritingDirections()
2027 nStart = nEnd; in InitWritingDirections()
2151 sal_uInt16 nStart = rPaM.GetIndex(); in ImpRemoveChars() local
2152 sal_uInt16 nEnd = nStart + nChars; in ImpRemoveChars()
2158 if ( ( pAttr->GetEnd() >= nStart ) && ( pAttr->GetStart() < nEnd ) ) in ImpRemoveChars()
2359 if ( aWrong.nStart != 0 ) // Nicht ein anschliessender in ImpConnectParagraphs()
2361 aWrong.nStart = aWrong.nStart + nEnd; in ImpConnectParagraphs()
2801 sal_uInt32 nStart = 0; in ImpInsertText() local
2802 while ( nStart < aText.Len() ) in ImpInsertText()
2804 sal_uInt32 nEnd = aText.Search( LINE_SEP, static_cast<xub_StrLen>(nStart) ); in ImpInsertText()
2809 if ( nEnd > nStart ) in ImpInsertText()
2811 XubString aLine( aText, nStart, static_cast<xub_StrLen>(nEnd-nStart) ); in ImpInsertText()
2865 nStart = nEnd+1; in ImpInsertText()
2963 if ( rWrong.nStart > nEnd ) in ImpInsertParaBreak()
2967 rRWrong.nStart = rRWrong.nStart - nEnd; in ImpInsertParaBreak()
2970 else if ( ( rWrong.nStart < nEnd ) && ( rWrong.nEnd > nEnd ) ) in ImpInsertParaBreak()
3385 sal_uInt16 nStart = USHRT_MAX, nEnd = USHRT_MAX; in GetLineNumberAtIndex() local
3388 GetLineBoundaries( nStart, nEnd, nPara, i ); in GetLineNumberAtIndex()
3389 if (nStart <= nIndex && nIndex < nEnd) in GetLineNumberAtIndex()