Home
last modified time | relevance | path

Searched refs:monotonicTime (Results 1 – 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/loader/
DDocumentLoadTiming.cpp52 double DocumentLoadTiming::monotonicTimeToZeroBasedDocumentTime(double monotonicTime) const in monotonicTimeToZeroBasedDocumentTime()
54 if (!monotonicTime) in monotonicTimeToZeroBasedDocumentTime()
56 return monotonicTime - m_referenceMonotonicTime; in monotonicTimeToZeroBasedDocumentTime()
59 double DocumentLoadTiming::monotonicTimeToPseudoWallTime(double monotonicTime) const in monotonicTimeToPseudoWallTime()
61 if (!monotonicTime) in monotonicTimeToPseudoWallTime()
63 return m_referenceWallTime + monotonicTime - m_referenceMonotonicTime; in monotonicTimeToPseudoWallTime()
DDocumentLoadTiming.h50 void setResponseEnd(double monotonicTime) { m_responseEnd = monotonicTime; } in setResponseEnd() argument
/external/chromium_org/third_party/WebKit/public/platform/
DWebAnimationDelegate.h36 virtual void notifyAnimationStarted(double monotonicTime, WebAnimation::TargetProperty) = 0;
37 virtual void notifyAnimationFinished(double monotonicTime, WebAnimation::TargetProperty) = 0;
DWebAnimation.h67 virtual void setStartTime(double monotonicTime) = 0;
70 virtual void setTimeOffset(double monotonicTime) = 0;
/external/chromium_org/third_party/WebKit/Source/web/
DLinkHighlight.h67 …virtual void notifyAnimationStarted(double monotonicTime, blink::WebAnimation::TargetProperty) OVE…
68 …virtual void notifyAnimationFinished(double monotonicTime, blink::WebAnimation::TargetProperty) OV…
DPageOverlay.cpp76 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { } in notifyAnimationStarted() argument
/external/chromium_org/content/child/
Dtouch_fling_gesture_curve.h32 virtual bool apply(double monotonicTime,
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
DGraphicsLayerClient.h67 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) = 0;
DGraphicsLayer.h257 …virtual void notifyAnimationStarted(double monotonicTime, blink::WebAnimation::TargetProperty) OVE…
258 …virtual void notifyAnimationFinished(double monotonicTime, blink::WebAnimation::TargetProperty) OV…
DImageLayerChromiumTest.cpp41 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { } in notifyAnimationStarted() argument
DGraphicsLayerTest.cpp51 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE { } in notifyAnimationStarted() argument
DGraphicsLayer.cpp1210 void GraphicsLayer::notifyAnimationStarted(double monotonicTime, WebAnimation::TargetProperty) in notifyAnimationStarted() argument
1213 m_client->notifyAnimationStarted(this, monotonicTime); in notifyAnimationStarted()
/external/chromium_org/third_party/WebKit/Source/core/frame/
DPinchViewport.h138 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE;
DPinchViewport.cpp412 void PinchViewport::notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) in notifyAnimationStarted() argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/compositing/
DCompositedLayerMapping.h177 virtual void notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) OVERRIDE;
DCompositedLayerMapping.cpp2138 void CompositedLayerMapping::notifyAnimationStarted(const GraphicsLayer*, double monotonicTime) in notifyAnimationStarted() argument
2140 …->node()->document().compositorPendingAnimations().notifyCompositorAnimationStarted(monotonicTime); in notifyAnimationStarted()