HomeSort by relevance Sort by last modified time
    Searched full:currenttime (Results 151 - 175 of 375) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/
MediaController.h 63 virtual double currentTime() const;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLResourcePreloader.h 31 #include "wtf/CurrentTime.h"
  /external/chromium_org/third_party/WebKit/Source/core/workers/
SharedWorkerGlobalScope.cpp 41 #include "wtf/CurrentTime.h"
  /external/chromium_org/third_party/WebKit/Source/modules/webaudio/
AudioContext.idl 39 readonly attribute float currentTime;
AudioDestinationNode.h 53 double currentTime() const { return currentSampleFrame() / static_cast<double>(sampleRate()); }
  /external/chromium_org/third_party/libjingle/source/talk/base/
taskrunner.h 56 virtual int64 CurrentTime() = 0 ;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xvmc/tests/
test_blocks.c 107 XvUngrabPort(display, port_num, CurrentTime);
testlib.c 91 if (XvGrabPort(display, adaptor_info[i].base_id + l, CurrentTime) == Success)
  /external/chromium_org/ui/base/x/
selection_requestor.cc 50 CurrentTime);
  /external/chromium_org/ui/views/widget/desktop_aura/
x11_desktop_handler.cc 87 xclient.xclient.data.l[1] = CurrentTime;
  /external/mesa3d/src/gallium/state_trackers/xvmc/tests/
test_blocks.c 107 XvUngrabPort(display, port_num, CurrentTime);
testlib.c 91 if (XvGrabPort(display, adaptor_info[i].base_id + l, CurrentTime) == Success)
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11yuv.c 222 if ( Success == SDL_NAME(XvGrabPort)(GFX_Display, ainfo[i].base_id+k, CurrentTime) ) {
300 SDL_NAME(XvUngrabPort)(GFX_Display, xv_port, CurrentTime);
319 SDL_NAME(XvUngrabPort)(GFX_Display, xv_port, CurrentTime);
513 SDL_NAME(XvUngrabPort)(GFX_Display, hwdata->port, CurrentTime);
  /frameworks/base/services/java/com/android/server/
TwilightService.java 441 Time currentTime = new Time();
442 currentTime.set(System.currentTimeMillis());
444 (currentTime.gmtoff - (currentTime.isDst > 0 ? 3600 : 0));
  /frameworks/base/services/java/com/android/server/location/
ComprehensiveCountryDetector.java 469 long currentTime = SystemClock.elapsedRealtime();
475 currentSessionLength = currentTime - mStartTime;
484 sb.append("currentTime=" + currentTime + ", ");
  /libcore/luni/src/test/java/tests/java/sql/
SelectFunctionalityTest.java 101 long currentTime = Calendar.getInstance().getTimeInMillis();
102 date = new Date(currentTime);
103 time = new Time(currentTime);
105 DatabaseCreator.fillTestTable2(conn, 1, 5, currentTime);
  /packages/apps/Music/res/layout/
audio_player_common.xml 32 <TextView android:id="@+id/currenttime"
  /external/chromium_org/third_party/WebKit/Source/core/loader/
ProgressTracker.cpp 36 #include "wtf/CurrentTime.h"
207 double now = currentTime();
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp 786 const SMILTime& currentTime = list[indexOfResult].time();
789 if (currentTime.isIndefinite() && beginOrEnd == Begin)
792 if (currentTime < minimumTime)
794 if (currentTime > minimumTime)
795 return currentTime;
797 ASSERT(currentTime == minimumTime);
799 return currentTime;
802 SMILTime nextTime = currentTime;
    [all...]
  /external/chromium_org/tools/gn/secondary/third_party/WebKit/Source/wtf/
BUILD.gn 72 "CurrentTime.cpp",
73 "CurrentTime.h",
  /frameworks/base/core/java/android/view/animation/
Animation.java 828 * @param currentTime Where we are in the animation. This is wall clock time.
833 public boolean getTransformation(long currentTime, Transformation outTransformation) {
835 mStartTime = currentTime;
842 normalizedTime = ((float) (currentTime - (mStartTime + startOffset))) /
846 normalizedTime = currentTime < mStartTime ? 0.0f : 1.0f;
930 * @param currentTime Where we are in the animation. This is wall clock time.
937 public boolean getTransformation(long currentTime, Transformation outTransformation,
940 return getTransformation(currentTime, outTransformation);
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
NetworkPolicyManagerServiceTest.java 449 final long currentTime = parseTime("2007-11-14T00:00:00.000Z");
454 final long actualCycle = computeLastCycleBoundary(currentTime, policy);
460 final long currentTime = parseTime("2007-11-14T00:00:00.000Z");
465 final long actualCycle = computeLastCycleBoundary(currentTime, policy);
471 final long currentTime = parseTime("2007-02-14T00:00:00.000Z");
476 final long actualCycle = computeLastCycleBoundary(currentTime, policy);
482 final long currentTime = parseTime("2007-03-14T00:00:00.000Z");
487 final long actualCycle = computeLastCycleBoundary(currentTime, policy);
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
ClockDatabaseHelper.java 171 Calendar currentTime = Calendar.getInstance();
192 AlarmInstance newInstance = alarm.createInstanceAfter(currentTime);
  /external/chromium/chrome/browser/resources/
mediaplayer.html 326 var current = element.currentTime;
367 element.currentTime = 0;
434 if (element.currentTime > 6) {
435 element.currentTime = 0;
462 element.currentTime = current;
815 videoPlaybackElement.currentTime = 0;
  /external/chromium_org/chrome/browser/ui/cocoa/tabs/
tab_view.mm 588 NSTimeInterval currentTime = [NSDate timeIntervalSinceReferenceDate];
602 if (currentTime >= hoverHoldEndTime_) {
611 nextUpdate = MIN(hoverHoldEndTime_ - currentTime, nextUpdate);
624 alertHoldEndTime_ = currentTime + kAlertHoldDuration;
631 if (currentTime >= alertHoldEndTime_) {
644 nextUpdate = MIN(alertHoldEndTime_ - currentTime, nextUpdate);

Completed in 476 milliseconds

1 2 3 4 5 67 8 91011>>