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

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/native/jni/tests/utils/
time_keeper_test.cpp 26 const int startTime = TimeKeeper::peekCurrentTime();
34 EXPECT_LE(startTime, TimeKeeper::peekCurrentTime());
  /hardware/interfaces/radio/1.0/vts/functional/
radio_hidl_hal_misc.cpp 783 auto startTime = std::chrono::system_clock::now();
785 std::chrono::duration_cast<chrono::seconds>(std::chrono::system_clock::now() - startTime)
812 startTime = std::chrono::system_clock::now();
814 std::chrono::duration_cast<chrono::seconds>(std::chrono::system_clock::now() - startTime)
  /hardware/interfaces/radio/1.1/vts/functional/
radio_hidl_hal_api.cpp 38 auto startTime = std::chrono::system_clock::now();
40 std::chrono::duration_cast<chrono::seconds>(std::chrono::system_clock::now() - startTime)
65 startTime = std::chrono::system_clock::now();
68 startTime)
  /frameworks/support/wear/src/androidTest/java/androidx/wear/widget/util/
AsyncViewActions.java 40 final long startTime = System.currentTimeMillis();
41 final long endTime = startTime + millis;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AnimationTime.java 41 public static long startTime() {
  /test/vti/dashboard/src/main/webapp/js/
plan_runs.js 32 var startTime = entry.testPlanRun.startTimestamp;
43 moment().renderTime(startTime, false) + ' - ' +
45 moment().renderDuration(endTime - startTime) + ')');
  /tools/tradefederation/core/src/com/android/tradefed/targetprep/
ConnectionChecker.java 38 long startTime = System.currentTimeMillis();
41 if (System.currentTimeMillis() - startTime > timeout) {
  /cts/hostsidetests/statsd/src/android/cts/statsd/metadata/
MetadataTests.java 54 long startTime = System.currentTimeMillis();
74 while(System.currentTimeMillis() - startTime < 8_000) {
  /developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
TimerObj.java 25 public long startTime;
33 * @param startTime the start time of the timer.
36 public TimerObj(long startTime, long timerLength) {
37 this.startTime = startTime;
47 return originalLength - (millis - startTime);
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/util/
TimerObj.java 25 public long startTime;
33 * @param startTime the start time of the timer.
36 public TimerObj(long startTime, long timerLength) {
37 this.startTime = startTime;
47 return originalLength - (millis - startTime);
  /development/samples/browseable/Timer/src/com.example.android.wearable.timer/util/
TimerObj.java 25 public long startTime;
33 * @param startTime the start time of the timer.
36 public TimerObj(long startTime, long timerLength) {
37 this.startTime = startTime;
47 return originalLength - (millis - startTime);
  /external/caliper/caliper/src/main/java/com/google/caliper/model/
Run.java 39 private Instant startTime;
44 this.startTime = Defaults.INSTANT;
50 this.startTime = builder.startTime;
61 public Instant startTime() {
62 return startTime;
72 && this.startTime.equals(that.startTime);
79 return Objects.hashCode(id, label, startTime);
86 .add("startTime", startTime
    [all...]
  /external/compiler-rt/test/builtins/timing/
floatdidf.c 32 uint64_t startTime = mach_absolute_time();
37 double thisTime = intervalInCycles(startTime, endTime);
floatdisf.c 32 uint64_t startTime = mach_absolute_time();
37 double thisTime = intervalInCycles(startTime, endTime);
floatdixf.c 32 uint64_t startTime = mach_absolute_time();
37 double thisTime = intervalInCycles(startTime, endTime);
floatundidf.c 29 uint64_t startTime = mach_absolute_time();
34 double thisTime = intervalInCycles(startTime, endTime);
floatundisf.c 32 uint64_t startTime = mach_absolute_time();
37 double thisTime = intervalInCycles(startTime, endTime);
floatundixf.c 32 uint64_t startTime = mach_absolute_time();
37 double thisTime = intervalInCycles(startTime, endTime);
  /external/mockito/src/main/java/org/mockito/internal/util/
Timer.java 12 private long startTime = -1;
23 assert startTime != -1;
24 return System.currentTimeMillis() - startTime <= durationMillis;
31 startTime = System.currentTimeMillis();
  /external/vulkan-validation-layers/scripts/
lvl_genvk.py 32 startTime = None
35 global startTime
36 startTime = time.clock()
39 global startTime
42 write(msg, endTime - startTime, file=sys.stderr)
43 startTime = None
  /frameworks/base/core/java/android/content/
SyncInfo.java 52 public final long startTime;
61 int authorityId, String authority, long startTime) {
62 return new SyncInfo(authorityId, REDACTED_ACCOUNT, authority, startTime);
66 public SyncInfo(int authorityId, Account account, String authority, long startTime) {
70 this.startTime = startTime;
78 this.startTime = other.startTime;
91 parcel.writeLong(startTime);
99 startTime = parcel.readLong()
    [all...]
  /frameworks/native/libs/binder/
ActivityManager.cpp 35 int64_t startTime = 0;
41 if (startTime == 0) {
42 startTime = uptimeMillis();
44 } else if ((uptimeMillis() - startTime) > 1000000) {
PermissionController.cpp 33 int64_t startTime = 0;
39 if (startTime == 0) {
40 startTime = uptimeMillis();
42 } else if ((uptimeMillis() - startTime) > 10000) {
  /libcore/luni/src/test/java/libcore/java/lang/
OldDoubleTest.java 72 long startTime = System.currentTimeMillis();
75 (System.currentTimeMillis() - startTime) < 1000);
  /libcore/ojluni/src/main/java/java/lang/
Process.java 189 long startTime = System.nanoTime();
201 rem = unit.toNanos(timeout) - (System.nanoTime() - startTime);

Completed in 456 milliseconds

1 2 3 4 5 6 7 8 91011>>