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

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/
Clock.cpp 38 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;
Clock.h 57 double m_startTime;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptGCEvent.h 59 : 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;
  /external/chromium_org/third_party/WebKit/Source/core/timing/
PerformanceEntry.cpp 39 , m_startTime(startTime)
61 return m_startTime;
PerformanceEntry.h 69 const double m_startTime;
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebActiveGestureAnimation.cpp 49 : m_startTime(startTime)
59 m_startTime = time;
64 return m_curve->apply(time - m_startTime, m_target);
WebActiveGestureAnimation.h 56 double m_startTime;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationPlayer.h 98 bool hasStartTime() const { return !isNull(m_startTime); }
99 double startTime() const { return m_startTime * 1000; }
100 double startTimeInternal() const { return m_startTime; }
131 double startTime() const { return m_startTime; }
135 , m_startTime(startTime)
139 double m_startTime;
169 double m_startTime;
AnimationPlayer.cpp 62 , m_startTime(nullValue())
103 if (isNull(m_startTime) || !m_timeline)
105 return (m_timeline->effectiveTime() - m_startTime) * m_playbackRate;
179 if (newStartTime == m_startTime)
184 m_startTime = newStartTime;
185 m_sortInfo.m_startTime = newStartTime;
419 ASSERT(!std::isnan(m_startTime) && !std::isnan(other.m_startTime));
420 if (m_startTime < other.m_startTime)
    [all...]
AnimationNode.h 98 double startTime() const { return m_startTime * 1000; }
99 double startTimeInternal() const { return m_startTime; }
145 // FIXME: m_parent and m_startTime are placeholders, they depend on timing groups.
147 const double m_startTime;
AnimationNode.cpp 55 , 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/
MediaFragmentURIParser.h 57 double m_startTime;
MediaFragmentURIParser.cpp 74 , m_startTime(MediaPlayer::invalidTime())
85 return m_startTime;
182 m_startTime = start;
  /external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesisUtterance.h 68 double startTime() const { return m_startTime; }
69 void setStartTime(double startTime) { m_startTime = startTime; }
85 double m_startTime;
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackCue.cpp 46 : m_startTime(start)
95 if (m_startTime == value || value < 0)
99 m_startTime = value;
TextTrackCue.h 64 double startTime() const { return m_startTime; }
109 double m_startTime;
  /external/chromium_org/third_party/WebKit/Source/platform/scroll/
ScrollAnimatorNone.cpp 210 m_startTime = 0;
229 if (!m_startTime || !pixelDelta || (pixelDelta < 0) != (m_desiredPosition - *m_currentPosition < 0)) {
231 m_startTime = 0;
243 if (!m_startTime) {
258 if (!m_startTime) {
260 m_startTime = currentTime - kTickTime / 2;
262 m_lastAnimationTime = m_startTime;
270 double deltaTime = m_lastAnimationTime - m_startTime;
347 double deltaTime = currentTime - m_startTime;
372 , m_startTime(0
    [all...]
ScrollAnimatorNone.h 123 double m_startTime;
150 double m_startTime;
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioScheduledSourceNode.h 103 // 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").
104 double m_startTime; // in seconds
AudioScheduledSourceNode.cpp 48 , m_startTime(0)
75 size_t startFrame = AudioUtilities::timeToSampleFrame(m_startTime, sampleRate);
149 m_startTime = when;
  /external/chromium_org/third_party/WebKit/Source/platform/mac/
ScrollElasticityController.h 129 CFTimeInterval m_startTime;
ScrollElasticityController.mm 106 , 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/
LinkHighlight.h 99 double m_startTime;
LinkHighlight.cpp 70 , m_startTime(monotonicallyIncreasingTime())
288 float extraDurationRequired = std::max(0.f, minPreFadeDuration - static_cast<float>(monotonicallyIncreasingTime() - m_startTime));
  /external/chromium_org/third_party/WebKit/Source/web/tests/
ScrollAnimatorNoneTest.cpp 189 this->m_startTime = data.m_startTime;
203 return m_currentVelocity == other.m_currentVelocity && m_desiredPosition == other.m_desiredPosition && m_desiredVelocity == other.m_desiredVelocity && m_startPosition == other.m_startPosition && m_startTime == other.m_startTime && m_startVelocity == other.m_startVelocity && m_animationTime == other.m_animationTime && m_lastAnimationTime == other.m_lastAnimationTime && m_attackPosition == other.m_attackPosition && m_attackTime == other.m_attackTime && m_attackCurve == other.m_attackCurve && m_releasePosition == other.m_releasePosition && m_releaseTime == other.m_releaseTime && m_releaseCurve == other.m_releaseCurve;
270 double oldTimeLeft = m_data->m_animationTime - (m_data->m_lastAnimationTime - m_data->m_startTime);
277 double deltaTime = m_data->m_lastAnimationTime - m_data->m_startTime;
303 bool testEstimatedMaxVelocity = m_data->m_startTime + m_data->m_animationTime - m_data->m_lastAnimationTime > m_data->m_releaseTime;
307 double deltaTime = m_data->m_lastAnimationTime - m_data->m_startTime;
    [all...]

Completed in 571 milliseconds

1 2