HomeSort by relevance Sort by last modified time
    Searched defs:currentTime (Results 1 - 25 of 49) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/wtf/
CurrentTime.cpp 32 #include "wtf/CurrentTime.h"
49 double currentTime()
ThreadingWin.cpp 91 #include "wtf/CurrentTime.h"
382 double currentTime = WTF::currentTime();
385 if (absoluteTime < currentTime)
389 if (absoluteTime - currentTime > static_cast<double>(INT_MAX) / 1000.0)
392 return static_cast<DWORD>((absoluteTime - currentTime) * 1000.0);
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationClock.cpp 34 #include "wtf/CurrentTime.h"
57 double AnimationClock::currentTime()
60 const double currentTime = m_monotonicallyIncreasingTime();
61 if (m_time < currentTime) {
63 const double frameShift = fmod(currentTime - m_time, approximateFrameTime);
64 const double newTime = currentTime + (approximateFrameTime - frameShift);
65 ASSERT(newTime >= currentTime);
66 ASSERT(newTime <= currentTime + approximateFrameTime);
AnimationTimeline.cpp 178 double AnimationTimeline::currentTime(bool& isNull)
189 double result = m_document->animationClock().currentTime() - zeroTime();
194 double AnimationTimeline::currentTime()
AnimationPlayer.cpp 105 bool AnimationPlayer::limited(double currentTime) const
107 return (m_playbackRate < 0 && currentTime <= 0) || (m_playbackRate > 0 && currentTime >= sourceEnd());
165 double AnimationPlayer::currentTime(bool& isNull)
167 double result = currentTime();
172 double AnimationPlayer::currentTime()
295 double AnimationPlayer::calculateStartTime(double currentTime) const
297 return m_timeline->effectiveTime() - currentTime / m_playbackRate;
347 double currentTime = calculateCurrentTime();
348 if (m_playbackRate > 0 && currentTime > sourceEnd())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
AnimationPlayerEvent.cpp 11 : currentTime(0.0)
22 AnimationPlayerEvent::AnimationPlayerEvent(const AtomicString& type, double currentTime, double timelineTime)
24 , m_currentTime(currentTime)
31 , m_currentTime(initializer.currentTime)
40 double AnimationPlayerEvent::currentTime() const
AnimationPlayerEvent.h 15 double currentTime;
26 static PassRefPtrWillBeRawPtr<AnimationPlayerEvent> create(const AtomicString& type, double currentTime, double timelineTime)
28 return adoptRefWillBeNoop(new AnimationPlayerEvent(type, currentTime, timelineTime));
37 double currentTime() const;
46 AnimationPlayerEvent(const AtomicString& type, double currentTime, double timelineTime);
  /external/chromium_org/third_party/WebKit/Source/platform/
Clock.cpp 29 #include "wtf/CurrentTime.h"
47 double Clock::currentTime() const
80 return WTF::currentTime();
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioDestinationNode.h 54 double currentTime() const { return currentSampleFrame() / static_cast<double>(sampleRate()); }
AudioContext.h 96 double currentTime() const { return m_destinationNode->currentTime(); }
AudioNode.cpp 381 double currentTime = context()->currentTime();
382 if (m_lastProcessingTime != currentTime) {
383 m_lastProcessingTime = currentTime; // important to first update this time because of feedback loops in the rendering graph
413 return m_lastNonSilentTime + latencyTime() + tailTime() < context()->currentTime();
AudioParamTimeline.cpp 206 if (!tryLocker.locked() || !context || !m_events.size() || context->currentTime() < m_events[0].time()) {
215 double startTime = context->currentTime();
269 double currentTime = startTime;
282 currentTime = fillToTime;
297 if (nextEvent && nextEvent->time() < currentTime)
318 float x = (currentTime - time1) * k;
321 currentTime += sampleFrameTimeIncr;
335 // AudioUtilities::timeToSampleFrame(currentTime - time1, sampleRate), but is more
338 AudioUtilities::timeToSampleFrame(currentTime - time1, sampleRate) / numSampleFrames);
343 currentTime += sampleFrameTimeIncr
    [all...]
  /external/chromium_org/third_party/skia/tools/skpdiff/
skpdiff_util.cpp 89 LARGE_INTEGER currentTime;
91 QueryPerformanceCounter(&currentTime);
93 return (double)currentTime.QuadPart / (double)frequency.QuadPart;
95 struct timespec currentTime;
96 clock_gettime(CLOCK_REALTIME, &currentTime);
97 return currentTime.tv_sec + (double)currentTime.tv_nsec / 1e9;
99 struct timeval currentTime;
100 gettimeofday(&currentTime, NULL);
101 return currentTime.tv_sec + (double)currentTime.tv_usec / 1e6
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMTimer.cpp 35 #include "wtf/CurrentTime.h"
184 double currentTime = monotonicallyIncreasingTime();
185 if (fireTime <= currentTime)
200 if (alignedTimeRoundedDown <= currentTime)
  /cts/tests/tests/hardware/src/android/hardware/consumerir/cts/
ConsumerIrTest.java 89 long currentTime = SystemClock.elapsedRealtimeNanos();
93 totalXmitTimeNanos, newTime - currentTime);
94 assertTrue(msg, newTime - currentTime >= totalXmitTimeNanos * (1.0 - margin));
95 assertTrue(msg, newTime - currentTime <= totalXmitTimeNanos * (1.0 + margin));
98 currentTime = SystemClock.elapsedRealtimeNanos();
102 totalXmitTimeNanos, newTime - currentTime);
103 assertTrue(msg, newTime - currentTime >= totalXmitTimeNanos * (1.0 - margin));
104 assertTrue(msg, newTime - currentTime <= totalXmitTimeNanos * (1.0 + margin));
  /external/chromium_org/storage/browser/fileapi/
file_writer_delegate.cc 189 base::Time currentTime = base::Time::Now();
191 (currentTime - last_progress_event_time_).InMilliseconds() >
194 last_progress_event_time_ = currentTime;
  /external/chromium_org/third_party/webrtc/modules/audio_coding/main/test/
iSACTest.cc 295 char currentTime[500];
302 _myTimer.CurrentTimeHMS(currentTime);
352 char currentTime[50];
356 _myTimer.CurrentTimeHMS(currentTime);
358 printf("\r%s", currentTime);
  /external/chromium_org/content/renderer/media/
webmediaplayer_ms.cc 285 double WebMediaPlayerMS::currentTime() const {
  /external/chromium_org/mojo/services/html_viewer/
blink_platform_impl.cc 93 double BlinkPlatformImpl::currentTime() {
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
CachingCorrectnessTest.cpp 121 virtual double currentTime()
  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaController.cpp 39 #include "wtf/CurrentTime.h"
146 double MediaController::currentTime() const
153 m_position = std::max(0.0, std::min(duration(), m_clock->currentTime()));
486 element->seek(currentTime());
602 double now = WTF::currentTime();
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SMILTimeContainer.cpp 150 return currentTime() + m_accumulatedActiveTime - lastResumeTime();
166 double now = currentTime();
198 m_pauseTime = currentTime();
210 m_resumeTime = currentTime();
226 double now = currentTime();
329 double SMILTimeContainer::currentTime() const
331 return document().animationClock().currentTime();
  /external/chromium_org/ui/android/java/src/org/chromium/ui/
VSyncMonitor.java 106 final long currentTime = getCurrentNanoTime();
107 onVSyncCallback(currentTime, currentTime);
117 final long currentTime = getCurrentNanoTime();
118 onVSyncCallback(estimateLastVSyncTime(currentTime), currentTime);
196 final long currentTime = getCurrentNanoTime();
199 if (currentTime - mLastVSyncCpuTimeNano < 2 * mRefreshPeriodNano) return false;
200 if (currentTime - estimateLastVSyncTime(currentTime) > mRefreshPeriodNano / 2) return false
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
MovieHeaderBox.java 50 private int currentTime;
131 currentTime = content.getInt();
193 byteBuffer.putInt(currentTime);
272 return currentTime;
275 public void setCurrentTime(int currentTime) {
276 this.currentTime = currentTime;
  /cts/tests/tests/view/src/android/view/animation/cts/
AnimationTest.java 376 long currentTime = AnimationUtils.currentAnimationTimeMillis();
377 animation.setStartTime(currentTime);
378 assertEquals(currentTime, animation.getStartTime());
607 long currentTime = AnimationUtils.currentAnimationTimeMillis();
609 assertEquals(currentTime, animation.getStartTime(), 100);

Completed in 771 milliseconds

1 2