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

1 2 3

  /system/chre/pal/include/chre/pal/
system.h 67 uint64_t (*getCurrentTime)(void);
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
StepInterpolator.java 61 double getCurrentTime();
AbstractStepInterpolator.java 262 * <em>only</em> changes the value returned by {@link #getCurrentTime()},
304 public double getCurrentTime() {
  /external/autotest/client/site_tests/video_YouTubePage/files/
video_YouTubePageCommon.js 17 videoEvents.timeupdate.push(getCurrentTime());
75 function getCurrentTime() {
112 window.__getCurrentTime = getCurrentTime;
  /packages/apps/Email/src/com/android/email/
StopWatch.java 44 mStart = getCurrentTime();
54 long now = getCurrentTime() ;
61 long now = getCurrentTime();
67 private static long getCurrentTime() {
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
StepInterpolatorWithJacobians.java 62 double getCurrentTime();
FirstOrderIntegratorWithJacobians.java 722 public double getCurrentTime() {
723 return interpolator.getCurrentTime();
    [all...]
  /frameworks/base/services/core/java/com/android/server/hdmi/
SendKeyAction.java 84 mLastSendKeyTime = getCurrentTime();
96 private long getCurrentTime() {
116 mLastSendKeyTime = getCurrentTime();
126 if (getCurrentTime() - mLastSendKeyTime >= IRT_MS) {
128 mLastSendKeyTime = getCurrentTime();
172 mLastSendKeyTime = getCurrentTime();
  /external/llvm/lib/Support/
Timer.cpp 120 TimeRecord TimeRecord::getCurrentTime(bool Start) {
141 StartTime = TimeRecord::getCurrentTime(true);
147 Time += TimeRecord::getCurrentTime(false);
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/
MovieHeaderBox.java 271 public int getCurrentTime() {
  /external/protobuf/java/util/src/main/java/com/google/protobuf/util/
TimeUtil.java 368 public static Timestamp getCurrentTime() {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/util/
Scheduler.java 13 public long getCurrentTime() {
  /external/swiftshader/third_party/LLVM/lib/Support/
Timer.cpp 129 TimeRecord TimeRecord::getCurrentTime(bool Start) {
152 Time -= TimeRecord::getCurrentTime(true);
156 Time += TimeRecord::getCurrentTime(false);
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Timer.cpp 120 TimeRecord TimeRecord::getCurrentTime(bool Start) {
143 StartTime = TimeRecord::getCurrentTime(true);
149 Time += TimeRecord::getCurrentTime(false);
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
BaseTween.java 299 public float getCurrentTime() {
Tween.java 838 assert getCurrentTime() >= 0;
839 assert getCurrentTime() <= duration;
855 float time = isReverse(step) ? duration - getCurrentTime() : getCurrentTime();
  /packages/apps/Settings/src/com/android/settings/deviceinfo/storage/
CachedStorageValuesHelper.java 151 .putLong(TIMESTAMP_KEY, mClock.getCurrentTime())
162 final long currentTime = mClock.getCurrentTime();
168 public long getCurrentTime() {
  /packages/apps/StorageManager/src/com/android/storagemanager/deletionhelper/
AppStateUsageStatsBridge.java 102 long days = (TimeUnit.MILLISECONDS.toDays(mClock.getCurrentTime() - lastUsed));
120 return (TimeUnit.MILLISECONDS.toDays(mClock.getCurrentTime() - pi.firstInstallTime));
124 long now = mClock.getCurrentTime();
218 public long getCurrentTime() {
StorageManagerUpsellDialog.java 94 long nextShowTime = noThanksDelay == NEVER ? NEVER : getCurrentTime() + noThanksDelay;
108 editor.putLong(NEXT_SHOW_TIME, getCurrentTime() + getDismissDelay(dismissCount));
156 private long getCurrentTime() {
AppsAsyncLoader.java 103 long now = mClock.getCurrentTime();
390 long days = (TimeUnit.MILLISECONDS.toDays(mClock.getCurrentTime() - lastUsed));
408 return (TimeUnit.MILLISECONDS.toDays(mClock.getCurrentTime() - pi.firstInstallTime));
533 public long getCurrentTime() {
  /packages/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/
AppStateUsageStatsBridgeTest.java 90 when(mClock.getCurrentTime()).thenReturn(STARTING_TIME);
423 public long getCurrentTime() {
  /packages/apps/StorageManager/src/com/android/storagemanager/automatic/
NotificationController.java 162 return getCurrentTime() >= nextTimeToShow;
275 getCurrentTime() + timeInMillis);
279 private long getCurrentTime() {
  /tools/tradefederation/core/src/com/android/tradefed/device/
NativeDeviceStateMonitor.java 284 final long number = getCurrentTime();
542 protected long getCurrentTime() {
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PlaybackControlsPresenter.java 171 long getCurrentTime() {
268 public int getCurrentTime(ViewHolder vh) {
273 return vh.getCurrentTime();
  /tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
ModuleDefinition.java 234 long prepStartTime = getCurrentTime();
254 mElapsedPreparation = getCurrentTime() - prepStartTime;
276 mElapsedTest = getCurrentTime();
350 long cleanStartTime = getCurrentTime();
372 mElapsedTearDown = getCurrentTime() - cleanStartTime;
428 listener.testRunEnded(getCurrentTime() - mElapsedTest, metrics);
496 private long getCurrentTime() {

Completed in 528 milliseconds

1 2 3