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

  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceResourceTiming.idl 37 readonly attribute double fetchStart;
PerformanceTiming.h 60 unsigned long long fetchStart() const;
PerformanceTiming.cpp 114 unsigned long long PerformanceTiming::fetchStart() const
120 return monotonicTimeToIntegerMilliseconds(timing->fetchStart());
127 return fetchStart();
130 // Rather than exposing a special value that indicates no DNS, we "backfill" with fetchStart.
133 return fetchStart();
251 return fetchStart();
PerformanceResourceTiming.cpp 89 double PerformanceResourceTiming::fetchStart() const
107 return fetchStart();
PerformanceTiming.idl 40 readonly attribute unsigned long long fetchStart;
PerformanceResourceTiming.h 65 double fetchStart() const;
PerformanceUserTiming.cpp 50 map.add("fetchStart", &PerformanceTiming::fetchStart);
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentLoadTiming.h 62 double fetchStart() const { return m_fetchStart; }
DocumentLoader.cpp 358 ASSERT(timing()->fetchStart());
716 ASSERT(!timing()->fetchStart());
  /external/chromium_org/third_party/WebKit/public/web/
WebPerformance.h 72 BLINK_EXPORT double fetchStart() const;
  /external/chromium_org/third_party/WebKit/Source/web/
WebPerformance.cpp 96 double WebPerformance::fetchStart() const
98 return millisecondsToSeconds(m_private->timing()->fetchStart());
  /external/chromium_org/chrome/renderer/
page_load_histograms.cc 235 Time fetch_start = Time::FromDoubleT(performance.fetchStart());
    [all...]

Completed in 224 milliseconds