Lines Matching refs:Time
26 void cef_time_to_basetime(const cef_time_t& cef_time, base::Time& time) { in cef_time_to_basetime()
27 base::Time::Exploded exploded; in cef_time_to_basetime()
36 std::ignore = base::Time::FromUTCExploded(exploded, &time); in cef_time_to_basetime()
39 void cef_time_from_basetime(const base::Time& time, cef_time_t& cef_time) { in cef_time_from_basetime()
46 base::Time::Exploded exploded; in cef_time_from_basetime()
62 base::Time base_time; in cef_time_to_timet()
72 base::Time base_time = base::Time::FromTimeT(time); in cef_time_from_timet()
81 base::Time base_time; in cef_time_to_doublet()
91 base::Time base_time = base::Time::FromDoubleT(time); in cef_time_from_doublet()
100 base::Time base_time = base::Time::Now(); in cef_time_now()
111 base::Time base_time1, base_time2; in cef_time_delta()