Lines Matching refs:i_rRight
91 bool operator> (const util::DateTime& i_rLeft, const util::DateTime& i_rRight) in operator >() argument
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 >()
108 if ( i_rLeft.Seconds != i_rRight.Seconds ) in operator >()
109 return i_rLeft.Seconds > i_rRight.Seconds; in operator >()
111 if ( i_rLeft.HundredthSeconds != i_rRight.HundredthSeconds ) in operator >()
112 return i_rLeft.HundredthSeconds > i_rRight.HundredthSeconds; in operator >()