Searched refs:i_rRight (Results 1 – 5 of 5) sorted by relevance
93 if ( i_rLeft.Year != i_rRight.Year ) in operator >()94 return i_rLeft.Year > i_rRight.Year; in operator >()96 if ( i_rLeft.Month != i_rRight.Month ) in operator >()97 return i_rLeft.Month > i_rRight.Month; in operator >()99 if ( i_rLeft.Day != i_rRight.Day ) in operator >()100 return i_rLeft.Day > i_rRight.Day; in operator >()102 if ( i_rLeft.Hours != i_rRight.Hours ) in operator >()103 return i_rLeft.Hours > i_rRight.Hours; in operator >()105 if ( i_rLeft.Minutes != i_rRight.Minutes ) in operator >()106 return i_rLeft.Minutes > i_rRight.Minutes; in operator >()[all …]
53 bool operator==(const util::DateTime &i_rLeft, const util::DateTime &i_rRight) in operator ==() argument55 return i_rLeft.Year == i_rRight.Year in operator ==()56 && i_rLeft.Month == i_rRight.Month in operator ==()57 && i_rLeft.Day == i_rRight.Day in operator ==()58 && i_rLeft.Hours == i_rRight.Hours in operator ==()59 && i_rLeft.Minutes == i_rRight.Minutes in operator ==()60 && i_rLeft.Seconds == i_rRight.Seconds in operator ==()61 && i_rLeft.HundredthSeconds == i_rRight.HundredthSeconds; in operator ==()
374 const css::util::DateTime &i_rRight) in operator ==() argument376 return i_rLeft.Year == i_rRight.Year in operator ==()377 && i_rLeft.Month == i_rRight.Month in operator ==()378 && i_rLeft.Day == i_rRight.Day in operator ==()379 && i_rLeft.Hours == i_rRight.Hours in operator ==()380 && i_rLeft.Minutes == i_rRight.Minutes in operator ==()381 && i_rLeft.Seconds == i_rRight.Seconds in operator ==()382 && i_rLeft.HundredthSeconds == i_rRight.HundredthSeconds; in operator ==()
101 bool operator==(const util::DateTime &i_rLeft, const util::DateTime &i_rRight) in operator ==() argument103 return i_rLeft.Year == i_rRight.Year in operator ==()104 && i_rLeft.Month == i_rRight.Month in operator ==()105 && i_rLeft.Day == i_rRight.Day in operator ==()106 && i_rLeft.Hours == i_rRight.Hours in operator ==()107 && i_rLeft.Minutes == i_rRight.Minutes in operator ==()108 && i_rLeft.Seconds == i_rRight.Seconds in operator ==()109 && i_rLeft.HundredthSeconds == i_rRight.HundredthSeconds; in operator ==()
57 const com::sun::star::lang::Locale& i_rRight) const in operator ()()59 return i_rLeft.Language.equals( i_rRight.Language ) && in operator ()()60 i_rLeft.Country.equals( i_rRight.Country ) && in operator ()()61 i_rLeft.Variant.equals( i_rRight.Variant ); in operator ()()
Completed in 1620 milliseconds