HomeSort by relevance Sort by last modified time
    Searched refs:finishTime (Results 1 - 25 of 57) sorted by null

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/page/
PerformanceEntry.cpp 36 PerformanceEntry::PerformanceEntry(const String& name, const String& entryType, double startTime, double finishTime)
40 , m_duration(finishTime - startTime)
PerformanceEntry.h 61 PerformanceEntry(const String& name, const String& entryType, double startTime, double finishTime);
  /external/chromium_org/third_party/WebKit/public/platform/
WebURLLoaderClient.h 67 virtual void didFinishLoading(WebURLLoader*, double finishTime) { }
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ResourceLoadNotifier.h 54 void dispatchDidFinishLoading(DocumentLoader*, unsigned long identifier, double finishTime);
ThreadableLoaderClientWrapper.h 83 void didFinishLoading(unsigned long identifier, double finishTime)
87 m_client->didFinishLoading(identifier, finishTime);
ResourceLoaderHost.h 59 virtual void didFinishLoading(const Resource*, double finishTime, const ResourceLoaderOptions&) = 0;
ResourceLoader.h 74 virtual void didFinishLoading(WebKit::WebURLLoader*, double finishTime) OVERRIDE;
92 void didFinishLoadingOnePart(double finishTime);
ResourceLoadNotifier.cpp 72 void ResourceLoadNotifier::dispatchDidFinishLoading(DocumentLoader* loader, unsigned long identifier, double finishTime)
78 InspectorInstrumentation::didFinishLoading(m_frame, identifier, loader, finishTime);
DocumentThreadableLoader.h 91 void didFinishLoading(unsigned long identifier, double finishTime);
WorkerThreadableLoader.cpp 217 static void workerGlobalScopeDidFinishLoading(ScriptExecutionContext* context, RefPtr<ThreadableLoaderClientWrapper> workerClientWrapper, unsigned long identifier, double finishTime)
220 workerClientWrapper->didFinishLoading(identifier, finishTime);
223 void WorkerThreadableLoader::MainThreadBridge::didFinishLoading(unsigned long identifier, double finishTime)
225 m_loaderProxy.postTaskForModeToWorkerGlobalScope(createCallbackTask(&workerGlobalScopeDidFinishLoading, m_workerClientWrapper, identifier, finishTime), m_taskMode);
ResourceLoader.cpp 172 void ResourceLoader::didFinishLoadingOnePart(double finishTime)
182 m_host->didFinishLoading(m_resource, finishTime, m_options);
340 void ResourceLoader::didFinishLoading(WebKit::WebURLLoader*, double finishTime)
352 m_resource->finish(finishTime);
353 didFinishLoadingOnePart(finishTime);
WorkerThreadableLoader.h 116 virtual void didFinishLoading(unsigned long identifier, double finishTime) OVERRIDE;
DocumentThreadableLoader.cpp 347 void DocumentThreadableLoader::didFinishLoading(unsigned long identifier, double finishTime)
350 InspectorInstrumentation::didFinishLoading(m_document->frame(), identifier, m_document->frame()->loader()->documentLoader(), finishTime);
355 m_client->didFinishLoading(identifier, finishTime);
  /external/chromium_org/content/renderer/media/android/
media_info_loader.h 97 double finishTime);
media_info_loader.cc 143 double finishTime) {
  /external/chromium/webkit/glue/media/
simple_data_source.h 84 double finishTime);
buffered_resource_loader.h 143 double finishTime);
  /external/chromium/webkit/glue/
resource_fetcher.h 72 WebKit::WebURLLoader* loader, double finishTime);
resource_fetcher.cc 108 WebURLLoader* loader, double finishTime) {
  /external/chromium_org/content/renderer/fetchers/
resource_fetcher.h 76 WebKit::WebURLLoader* loader, double finishTime);
resource_fetcher.cc 109 WebURLLoader* loader, double finishTime) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
TimelineRecordFactory.cpp 161 PassRefPtr<JSONObject> TimelineRecordFactory::createResourceFinishData(const String& requestId, bool didFail, double finishTime)
166 if (finishTime)
167 data->setNumber("networkTime", finishTime);
TimelineRecordFactory.h 79 static PassRefPtr<JSONObject> createResourceFinishData(const String& requestId, bool didFail, double finishTime);
  /frameworks/base/services/java/com/android/server/am/
BroadcastRecord.java 58 long finishTime; // when we finished the broadcast.
109 if (finishTime != 0) {
110 pw.print(" finishTime="); TimeUtils.formatDuration(finishTime, now, pw);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
NetworkManager.js 352 * @param {NetworkAgent.Timestamp} finishTime
354 loadingFinished: function(requestId, finishTime)
359 this._finishNetworkRequest(networkRequest, finishTime);
552 * @param {NetworkAgent.Timestamp} finishTime
554 _finishNetworkRequest: function(networkRequest, finishTime)
556 networkRequest.endTime = finishTime;

Completed in 1330 milliseconds

1 2 3