Home | History | Annotate | Download | only in time

Lines Matching refs:Max

59 Time Time::Max() {
60 return Time(std::numeric_limits<int64>::max());
67 if (tt == std::numeric_limits<time_t>::max())
68 return Max();
76 // Preserve max without offset to prevent overflow.
77 return std::numeric_limits<time_t>::max();
79 if (std::numeric_limits<int64>::max() - kTimeTToMicrosecondsOffset <= us_) {
82 return std::numeric_limits<time_t>::max();
91 if (dt == std::numeric_limits<double>::max())
92 return Max();
102 // Preserve max without offset to prevent overflow.
103 return std::numeric_limits<double>::max();
122 if (ms_since_epoch == std::numeric_limits<double>::max())
123 return Max();
134 // Preserve max without offset to prevent overflow.
135 return std::numeric_limits<double>::max();