Lines Matching refs:rOther
255 sal_Bool ScQueryParam::operator==( const ScQueryParam& rOther ) const in operator ==()
263 SCSIZE nOtherEntryCount = rOther.GetEntryCount(); in operator ==()
266 while ( nOtherUsed<nOtherEntryCount && rOther.maEntries[nOtherUsed].bDoQuery ) in operator ==()
270 && (nCol1 == rOther.nCol1) in operator ==()
271 && (nRow1 == rOther.nRow1) in operator ==()
272 && (nCol2 == rOther.nCol2) in operator ==()
273 && (nRow2 == rOther.nRow2) in operator ==()
274 && (nTab == rOther.nTab) in operator ==()
275 && (bHasHeader == rOther.bHasHeader) in operator ==()
276 && (bByRow == rOther.bByRow) in operator ==()
277 && (bInplace == rOther.bInplace) in operator ==()
278 && (bCaseSens == rOther.bCaseSens) in operator ==()
279 && (bRegExp == rOther.bRegExp) in operator ==()
280 && (bMixedComparison == rOther.bMixedComparison) in operator ==()
281 && (bDuplicate == rOther.bDuplicate) in operator ==()
282 && (bDestPers == rOther.bDestPers) in operator ==()
283 && (nDestTab == rOther.nDestTab) in operator ==()
284 && (nDestCol == rOther.nDestCol) in operator ==()
285 && (nDestRow == rOther.nDestRow) ) in operator ==()
289 bEqual = maEntries[i] == rOther.maEntries[i]; in operator ==()