Home
last modified time | relevance | path

Searched refs:nStart2 (Results 1 – 2 of 2) sorted by relevance

/trunk/main/sw/source/core/txtnode/
H A Dthints.cxx149 const xub_StrLen nStart2, const xub_StrLen nEnd2) in isOverlap() argument
152 ((nStart1 > nStart2) && (nStart1 < nEnd2) && (nEnd1 > nEnd2)) // (1) in isOverlap()
153 || ((nStart1 < nStart2) && (nStart2 < nEnd1) && (nEnd1 < nEnd2)); // (2) in isOverlap()
159 const xub_StrLen nStart2, const xub_StrLen nEnd2) in isNestedAny() argument
161 return ((nStart1 == nStart2) || (nEnd1 == nEnd2)) in isNestedAny()
163 ? (nStart1 != nEnd1) || (nStart2 == nEnd2) in isNestedAny()
164 : ((nStart1 < nStart2) ? (nEnd1 >= nEnd2) : (nEnd1 <= nEnd2)); in isNestedAny()
/trunk/main/editeng/source/editeng/
H A Dimpedit2.cxx2828 sal_uInt32 nStart2 = 0; in ImpInsertText() local
2829 while ( nStart2 < aLine.Len() ) in ImpInsertText()
2831 sal_uInt32 nEnd2 = aLine.Search( '\t', static_cast<xub_StrLen>(nStart2) ); in ImpInsertText()
2835 if ( nEnd2 > nStart2 ) in ImpInsertText()
2837 static_cast<xub_StrLen>(nStart2), in ImpInsertText()
2838 static_cast<xub_StrLen>(nEnd2-nStart2 ) ) ); in ImpInsertText()
2844 nStart2 = nEnd2+1; in ImpInsertText()

Completed in 40 milliseconds