Searched defs:LocalTime (Results 1 – 2 of 2) sorted by relevance
67 struct LocalTime { in localtime() struct68 std::time_t time_; in localtime()69 std::tm tm_; in localtime()71 LocalTime(std::time_t t): time_(t) {} in localtime() argument73 bool run() { in localtime()78 bool handle(std::tm *tm) { return tm != FMT_NULL; } in localtime()80 bool handle(internal::Null<>) { in localtime()85 bool fallback(int res) { return res == 0; } in localtime()87 bool fallback(internal::Null<>) { in localtime()
47 TEST(TimeTest, LocalTime) { in TEST() argument