HomeSort by relevance Sort by last modified time
    Searched refs:TimeToPPTime (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/ppapi/shared_impl/
time_conversion_unittest.cc 26 base::Time converted = ppapi::PPTimeToTime(TimeToPPTime(now));
33 ppapi::TimeToPPTime(one_second_from_now) - ppapi::TimeToPPTime(now);
56 base::Time converted = ppapi::PPTimeToTime(TimeToPPTime(epoch));
63 ppapi::TimeToPPTime(one_second_from_epoch) - ppapi::TimeToPPTime(epoch);
67 EXPECT_GE(kTimeSecondsSlop, fabs(ppapi::TimeToPPTime(epoch) - 0.0));
time_conversion.h 14 PPAPI_SHARED_EXPORT PP_Time TimeToPPTime(base::Time t);
file_type_conversion.cc 88 info_out->creation_time = TimeToPPTime(info.creation_time);
89 info_out->last_access_time = TimeToPPTime(info.last_accessed);
90 info_out->last_modified_time = TimeToPPTime(info.last_modified);
time_conversion.cc 19 double wall_clock = TimeToPPTime(base::Time::Now());
28 PP_Time TimeToPPTime(base::Time t) { return t.ToDoubleT(); }
  /external/chromium_org/ppapi/proxy/
ppb_core_proxy.cc 39 return TimeToPPTime(base::Time::Now());
flash_file_resource.cc 217 info->creation_time = TimeToPPTime(file_info.creation_time);
218 info->last_access_time = TimeToPPTime(file_info.last_accessed);
219 info->last_modified_time = TimeToPPTime(file_info.last_modified);
  /external/chromium_org/content/renderer/pepper/
plugin_module.cc 153 using ppapi::TimeToPPTime;
192 PP_Time GetTime() { return TimeToPPTime(base::Time::Now()); }

Completed in 720 milliseconds