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

1 2 3 4 5 6 7 8 91011>>

  /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/opencv3/modules/flann/include/opencv2/flann/
timer.h 48 int64 startTime;
70 startTime = cv::getTickCount();
79 value += ( (double)stopTime - startTime) / cv::getTickFrequency();
  /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...]
  /cts/common/host-side/util/src/com/android/compatibility/common/util/
MetricsStore.java 48 String startTime = buildInfo.getBuildAttributes().get(START_TIME_TAG);
49 mMap.put(generateTestKey(startTime, abi, classMethodName), reportLog);
57 String startTime = buildInfo.getBuildAttributes().get(START_TIME_TAG);
58 return mMap.remove(generateTestKey(startTime, abi, classMethodName));
64 private static String generateTestKey(String startTime, String abi, String classMethodName) {
65 return String.format("%s#%s#%s", startTime, abi, classMethodName);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AnimationTime.java 41 public static long startTime() {
  /packages/inputmethods/LatinIME/native/jni/tests/utils/
time_keeper_test.cpp 26 const int startTime = TimeKeeper::peekCurrentTime();
34 EXPECT_LE(startTime, TimeKeeper::peekCurrentTime());
  /external/opencv3/samples/gpu/
tick_meter.hpp 21 int64 startTime;
33 void TickMeter::reset() {startTime = 0; sumTime = 0; counter = 0; }
35 void TickMeter::start(){ startTime = cv::getTickCount(); }
39 if ( startTime == 0 )
42 sumTime += ( time - startTime );
43 startTime = 0;
  /packages/apps/TV/tests/common/src/com/android/tv/testing/dvr/
RecordingTestUtils.java 29 long startTime, long endTime) {
30 return ScheduledRecording.builder(startTime, endTime)
36 public static ScheduledRecording createTestRecordingWithPeriod(long channelId, long startTime,
39 startTime, endTime);
43 DvrDataManagerInMemoryImpl dvrDataManager, long channelId, long startTime,
45 ScheduledRecording recording = createTestRecordingWithPeriod(channelId, startTime, endTime);
  /external/autotest/client/deps/webgl_mpd/src/
cros_fps.js 1 crosFrameData = function(seq, startTime, frameElapsedTime, jsElapsedTime) {
3 this.startTime = startTime;
17 startTime, frameElapsedTime, jsElapsedTime) {
21 this.totalFrames, startTime, frameElapsedTime, jsElapsedTime);
  /external/slf4j/slf4j-ext/src/main/java/org/slf4j/profiler/
StopWatch.java 37 private long startTime;
47 this.startTime = original.startTime;
54 startTime = System.nanoTime();
100 return stopTime - startTime;
  /cts/tests/tests/view/src/android/view/animation/cts/
DecelerateInterpolatorTest.java 89 long startTime = anim.getStartTime();
90 anim.getTransformation(startTime, transformation);
94 anim.getTransformation(startTime + 500, transformation);
97 anim.getTransformation(startTime + 1000, transformation);
100 anim.getTransformation(startTime + 1500, transformation);
103 anim.getTransformation(startTime + DECELERATE_ALPHA_DURATION, transformation);
123 startTime = anim.getStartTime();
124 anim.getTransformation(startTime, transformation);
128 anim.getTransformation(startTime + 500, transformation);
131 anim.getTransformation(startTime + 1000, transformation)
    [all...]
GridLayoutAnimationControllerTest.java 121 long startTime = child1.getStartTime();
134 child1.getTransformation(startTime + 500, transformation1);
135 child2.getTransformation(startTime + 500, transformation2);
136 child3.getTransformation(startTime + 500, transformation3);
142 child1.getTransformation(startTime + 1200, transformation1);
143 child2.getTransformation(startTime + 1200, transformation2);
144 child3.getTransformation(startTime + 1200, transformation3);
150 child1.getTransformation(startTime + 2000, transformation1);
151 child2.getTransformation(startTime + 2000, transformation2);
152 child3.getTransformation(startTime + 2000, transformation3)
    [all...]
LinearInterpolatorTest.java 84 final long startTime = anim.getStartTime();
85 anim.getTransformation(startTime, transformation);
89 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP, transformation);
92 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 2, transformation);
95 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 3, transformation);
98 anim.getTransformation(startTime + LINEAR_ALPHA_TIME_STEP * 4, transformation);
101 anim.getTransformation(startTime + LINEAR_ALPHA_DURATION, transformation);
LayoutAnimationControllerTest.java 87 long startTime = childAnimation1.getStartTime();
97 childAnimation1.getTransformation(startTime + 500, transformation1);
98 childAnimation2.getTransformation(startTime + 500, transformation2);
99 childAnimation3.getTransformation(startTime + 500, transformation3);
105 childAnimation1.getTransformation(startTime + 1000, transformation1);
106 childAnimation2.getTransformation(startTime + 1000, transformation2);
107 childAnimation3.getTransformation(startTime + 1000, transformation3);
113 childAnimation1.getTransformation(startTime + 1500, transformation1);
114 childAnimation2.getTransformation(startTime + 1500, transformation2);
115 childAnimation3.getTransformation(startTime + 1500, transformation3)
    [all...]
AccelerateDecelerateInterpolatorTest.java 80 long startTime = anim.getStartTime();
81 anim.getTransformation(startTime, transformation);
85 anim.getTransformation(startTime + 500, transformation);
88 anim.getTransformation(startTime + 1000, transformation);
91 anim.getTransformation(startTime + 1500, transformation);
94 anim.getTransformation(startTime + ALPHA_DURATION, transformation);
  /cts/hostsidetests/appsecurity/test-apps/UsePermissionDiffCert/src/com/android/cts/usespermissiondiffcertapp/
ReceiveUriActivity.java 98 final long startTime = SystemClock.uptimeMillis();
104 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) {
125 final long startTime = SystemClock.uptimeMillis();
131 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) {
140 final long startTime = SystemClock.uptimeMillis();
146 if (SystemClock.uptimeMillis() >= (startTime + TIMEOUT_MILLIS)) {
  /external/compiler-rt/test/builtins/timing/
timing.h 5 double intervalInCycles( uint64_t startTime, uint64_t endTime )
7 uint64_t rawTime = endTime - startTime;
ashldi3.c 34 uint64_t startTime = mach_absolute_time();
39 double thisTime = intervalInCycles(startTime, endTime);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
DecodeJob.java 83 long startTime = LogTime.getLogTime();
86 logWithTimeAndKey("Decoded transformed from cache", startTime);
88 startTime = LogTime.getLogTime();
91 logWithTimeAndKey("Transcoded transformed from cache", startTime);
107 long startTime = LogTime.getLogTime();
110 logWithTimeAndKey("Decoded source from cache", startTime);
137 long startTime = LogTime.getLogTime();
140 logWithTimeAndKey("Transformed resource from source", startTime);
145 startTime = LogTime.getLogTime();
148 logWithTimeAndKey("Transcoded transformed from source", startTime);
    [all...]
  /packages/apps/TV/tests/unit/src/com/android/tv/dvr/
SchedulerTest.java 76 long startTime = now + TimeUnit.HOURS.toMillis(12);
78 .createTestRecordingWithPeriod(CHANNEL_ID, startTime,
79 startTime + TimeUnit.HOURS.toMillis(1));
84 eq(startTime - Scheduler.MS_TO_WAKE_BEFORE_START),
90 long startTime = now + 3;
92 .createTestRecordingWithPeriod(273, startTime, startTime + 100);
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/src/
effect.js 24 return (fraction <= 0 && interpolation.startTime == 0) ||
26 (fraction >= interpolation.startTime && fraction <= interpolation.endTime);
28 var offsetFraction = fraction - interpolation.startTime;
29 var localDuration = interpolation.endTime - interpolation.startTime;
78 var startTime = group[i].offset;
82 if (startTime == endTime) {
90 startTime: startTime,
99 return leftInterpolation.startTime - rightInterpolation.startTime;
    [all...]
  /packages/services/Telecomm/src/com/android/server/telecom/
Analytics.java 36 void setCallStartTime(long startTime) {
67 public long startTime; // start time in milliseconds since the epoch. 0 if not yet set.
88 startTime = 0;
97 this.startTime = other.startTime;
120 public void setCallStartTime(long startTime) {
121 Log.d(TAG, "setting startTime for call " + callId + " to " + startTime);
122 this.startTime = startTime;
    [all...]

Completed in 462 milliseconds

1 2 3 4 5 6 7 8 91011>>