Searched refs:nStart2 (Results 1 – 2 of 2) sorted by relevance
149 const xub_StrLen nStart2, const xub_StrLen nEnd2) in isOverlap() argument152 ((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() argument161 return ((nStart1 == nStart2) || (nEnd1 == nEnd2)) in isNestedAny()163 ? (nStart1 != nEnd1) || (nStart2 == nEnd2) in isNestedAny()164 : ((nStart1 < nStart2) ? (nEnd1 >= nEnd2) : (nEnd1 <= nEnd2)); in isNestedAny()
2828 sal_uInt32 nStart2 = 0; in ImpInsertText() local2829 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 37 milliseconds