Searched refs:m_startTime (Results 1 - 25 of 33) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/platform/
H A DClock.cpp38 m_startTime = m_lastTime = now();
43 m_startTime = m_lastTime = now();
55 m_lastTime = m_startTime = now();
64 m_lastTime = m_startTime = now();
74 m_lastTime = m_startTime = now();
87 return (m_lastTime - m_startTime) * m_rate;
H A DClock.h57 double m_startTime; member in class:blink::Clock
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptGCEvent.h59 : m_startTime(0.0)
65 m_startTime = 0.0;
71 double startTime() { return m_startTime; }
72 void setStartTime(double startTime) { m_startTime = startTime; }
77 double m_startTime; member in class:blink::GCEventData
/external/chromium_org/third_party/WebKit/Source/core/timing/
H A DPerformanceEntry.cpp39 , m_startTime(startTime)
60 return m_startTime;
H A DPerformanceEntry.h70 const double m_startTime; member in class:blink::PerformanceEntry
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DProgrammaticScrollAnimator.cpp23 , m_startTime(0.0)
34 m_startTime = 0.0;
39 m_startTime = 0.0;
58 if (!m_startTime)
59 m_startTime = monotonicTime;
60 double elapsedTime = monotonicTime - m_startTime;
H A DProgrammaticScrollAnimator.h41 double m_startTime; member in class:blink::ProgrammaticScrollAnimator
H A DScrollAnimatorNone.cpp208 m_startTime = 0;
227 if (!m_startTime || !pixelDelta || (pixelDelta < 0) != (m_desiredPosition - *m_currentPosition < 0)) {
229 m_startTime = 0;
241 if (!m_startTime) {
256 if (!m_startTime) {
258 m_startTime = currentTime - kTickTime / 2;
260 m_lastAnimationTime = m_startTime;
268 double deltaTime = m_lastAnimationTime - m_startTime;
345 double deltaTime = currentTime - m_startTime;
370 , m_startTime(
[all...]
H A DScrollAnimatorNone.h119 double m_startTime; member in struct:blink::ScrollAnimatorNone::PerAxisData
146 double m_startTime; member in class:blink::ScrollAnimatorNone
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebActiveGestureAnimation.cpp49 : m_startTime(startTime)
59 m_startTime = time;
64 return m_curve->apply(time - m_startTime, m_target);
H A DWebActiveGestureAnimation.h56 double m_startTime; member in class:blink::WebActiveGestureAnimation
/external/chromium_org/third_party/WebKit/Source/platform/speech/
H A DPlatformSpeechSynthesisUtterance.h68 double startTime() const { return m_startTime; }
69 void setStartTime(double startTime) { m_startTime = startTime; }
85 double m_startTime; member in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationPlayer.cpp66 , m_startTime(nullValue())
117 m_held = m_paused || !m_playbackRate || isLimited || std::isnan(m_startTime);
123 m_startTime = nullValue();
124 } else if (isLimited && std::isnan(m_startTime) && reason == TimingUpdateForAnimationFrame) {
125 m_startTime = calculateStartTime(newCurrentTime);
129 m_startTime = calculateStartTime(newCurrentTime);
162 return m_startTime * 1000;
196 bool hardChange = m_compositorState && (m_compositorState->sourceChanged || (m_compositorState->startTime != m_startTime && !std::isnan(m_compositorState->startTime) && !std::isnan(m_startTime)));
230 ASSERT(m_startTime
[all...]
H A DAnimationNode.h101 double startTime() const { return m_startTime * 1000; }
102 double startTimeInternal() const { return m_startTime; }
150 // FIXME: m_parent and m_startTime are placeholders, they depend on timing groups.
152 const double m_startTime; member in class:blink::AnimationNode
H A DAnimationPlayer.h113 bool hasStartTime() const { return !isNull(m_startTime); }
116 double startTimeInternal() const { return m_startTime; }
173 double m_startTime; member in class:blink::FINAL
205 : startTime(player.m_startTime)
H A DAnimationNode.cpp55 , m_startTime(0)
105 const double localTime = inheritedTime - m_startTime;
156 m_calculated.localTime = m_lastUpdateTime - m_startTime;
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackCue.cpp46 : m_startTime(start)
95 if (m_startTime == value || value < 0)
99 m_startTime = value;
H A DTextTrackCue.h65 double startTime() const { return m_startTime; }
110 double m_startTime; member in class:blink::TextTrackCue
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DMediaFragmentURIParser.h57 double m_startTime; member in class:blink::FINAL
H A DMediaFragmentURIParser.cpp74 , m_startTime(MediaPlayer::invalidTime())
85 return m_startTime;
182 m_startTime = start;
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioScheduledSourceNode.h92 // m_startTime is the time to start playing based on the context's timeline (0 or a time less than the context's current time means "now").
93 double m_startTime; // in seconds member in class:blink::AudioScheduledSourceNode
H A DAudioScheduledSourceNode.cpp47 , m_startTime(0)
74 size_t startFrame = AudioUtilities::timeToSampleFrame(m_startTime, sampleRate);
155 m_startTime = when;
/external/chromium_org/third_party/WebKit/Source/platform/mac/
H A DScrollElasticityController.h129 CFTimeInterval m_startTime; member in class:blink::ScrollElasticityController
H A DScrollElasticityController.mm106 , m_startTime(0)
202 if (!m_snapRubberbandTimerIsActive && m_startTime == 0)
331 CFTimeInterval timeDelta = [NSDate timeIntervalSinceReferenceDate] - m_startTime;
339 m_startTime = 0;
376 m_startTime = 0;
382 m_startTime = [NSDate timeIntervalSinceReferenceDate];
418 m_startTime = 0;
423 m_startTime = [NSDate timeIntervalSinceReferenceDate];
/external/chromium_org/third_party/WebKit/Source/web/
H A DLinkHighlight.h95 double m_startTime; member in class:blink::FINAL

Completed in 301 milliseconds

12