Searched refs:is_in_range (Results 1 - 1 of 1) sorted by relevance

/external/libchrome/base/time/
H A Dtime.cc336 inline bool is_in_range(int value, int lo, int hi) { function in namespace:base
341 return is_in_range(month, 1, 12) &&
342 is_in_range(day_of_week, 0, 6) &&
343 is_in_range(day_of_month, 1, 31) &&
344 is_in_range(hour, 0, 23) &&
345 is_in_range(minute, 0, 59) &&
346 is_in_range(second, 0, 60) &&
347 is_in_range(millisecond, 0, 999);

Completed in 42 milliseconds