HomeSort by relevance Sort by last modified time
    Searched refs:startTime (Results 151 - 175 of 603) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/database/
DatabaseLockTest.java 125 long startTime = System.currentTimeMillis();
128 long elapsedTime = endTime - startTime;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/
KeyguardService.java 153 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) {
155 mKeyguardViewMediator.startKeyguardExitAnimation(startTime, fadeoutDuration);
  /frameworks/native/libs/input/
VirtualKeyMap.cpp 63 nsecs_t startTime = systemTime(SYSTEM_TIME_MONOTONIC);
68 nsecs_t elapsedTime = systemTime(SYSTEM_TIME_MONOTONIC) - startTime;
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetAddressThreadTest.java 69 long startTime = System.currentTimeMillis();
78 && System.currentTimeMillis() - startTime > 240000) {
  /external/chromium_org/chrome/browser/resources/net_internals/
timeline_data_series.js 76 * points, starting at |startTime|, and |stepSize| milliseconds apart.
80 getValues: function(startTime, stepSize, count) {
82 if (this.cacheStartTime_ == startTime &&
89 this.cacheValues_ = this.getValuesInternal_(startTime, stepSize, count);
90 this.cacheStartTime_ = startTime;
105 getValuesInternal_: function(startTime, stepSize, count) {
109 var time = startTime;
269 getValuesInternal_: function(startTime, stepSize, count) {
270 // Find the first DataPoint after |startTime| - |stepSize|.
273 this.dataPoints_[nextPoint].time < startTime - stepSize)
    [all...]
  /cts/tests/tests/view/src/android/view/animation/cts/
ScaleAnimationTest.java 117 long startTime = scaleAnimation.getStartTime();
118 // interpolatedTime == startTime
119 scaleAnimation.getTransformation(startTime, transformation);
126 // interpolatedTime == startTime + (DURATION / 2)
127 scaleAnimation.getTransformation(startTime + (DURATION / 2), transformation);
132 // interpolatedTime == startTime + DURATION
133 scaleAnimation.getTransformation(startTime + DURATION, transformation);
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserScheduler.cpp 64 // At that time we'll initialize startTime.
66 , startTime(0)
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
TextTrackCue.h 65 double startTime() const { return m_startTime; }
  /external/chromium_org/third_party/WebKit/Source/core/timing/
Performance.cpp 205 double startTime = info.initialTime();
208 RefPtrWillBeRawPtr<PerformanceEntry> entry = PerformanceResourceTiming::create(info, initiatorDocument, startTime, allowTimingDetails);
220 startTime = finalTiming->requestTime;
227 RefPtrWillBeRawPtr<PerformanceEntry> entry = PerformanceResourceTiming::create(info, initiatorDocument, startTime, lastRedirectEndTime, allowTimingDetails, allowRedirectDetails);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
MemoryCountersGraph.js 80 counter.appendSample(record.endTime() || record.startTime(), counters[name]);
TimelineUIUtils.js 203 cpuTime += task.endTime() - task.startTime();
205 var startTime = tasks[firstTaskIndex].startTime();
207 var duration = endTime - startTime;
211 Number.millisToString(startTime - model.minimumRecordTime(), true));
303 var durationInMillis = frame.endTime - frame.startTime;
304 var durationText = WebInspector.UIString("%s (at %s)", Number.millisToString(frame.endTime - frame.startTime, true),
TimelinePanel.js 208 this._windowStartTime = event.data.startTime;
    [all...]
  /external/chromium_org/third_party/skia/include/utils/
SkInterpolator.h 30 @param startTime If not null, returns the time (in milliseconds) of the
38 bool getDuration(SkMSec* startTime, SkMSec* endTime) const;
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/vp8/test/
vp8_impl_unittest.cc 152 int64_t startTime = TickTime::MillisecondTimestamp();
153 while (TickTime::MillisecondTimestamp() - startTime < kMaxWaitEncTimeMs) {
162 int64_t startTime = TickTime::MillisecondTimestamp();
163 while (TickTime::MillisecondTimestamp() - startTime < kMaxWaitDecTimeMs) {
  /external/deqp/framework/delibs/decpp/
deSharedPtr.cpp 79 deUint64 startTime = deGetMicroseconds();
84 if (((cnt&(1<<14)) != 0) && (deGetMicroseconds()-startTime >= THREAD_TEST_TIME))
115 deUint64 startTime = deGetMicroseconds();
120 if (((cnt&(1<<14)) != 0) && (deGetMicroseconds()-startTime >= THREAD_TEST_TIME))
  /external/deqp/modules/internal/
ditImageCompareTests.cpp 81 const deUint64 startTime = deGetMicroseconds();
83 compareTime = deGetMicroseconds()-startTime;
130 const deUint64 startTime = deGetMicroseconds();
132 compareTime = deGetMicroseconds()-startTime;
  /external/skia/include/utils/
SkInterpolator.h 30 @param startTime If not null, returns the time (in milliseconds) of the
38 bool getDuration(SkMSec* startTime, SkMSec* endTime) const;
  /libcore/jsr166-tests/src/test/java/jsr166/
LockSupportTest.java 246 long startTime = System.nanoTime();
249 if (millisElapsedSince(startTime) >= timeoutMillis())
293 long startTime = System.nanoTime();
304 if (millisElapsedSince(startTime) > LONG_DELAY_MS)
ScheduledExecutorTest.java 42 final long startTime = System.nanoTime();
48 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
53 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
65 final long startTime = System.nanoTime();
71 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
76 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
87 final long startTime = System.nanoTime();
93 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
99 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
111 final long startTime = System.nanoTime()
    [all...]
ExecutorsTest.java 181 long startTime = System.nanoTime();
190 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
207 long startTime = System.nanoTime();
216 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
235 long startTime = System.nanoTime();
244 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
270 long startTime = System.nanoTime();
SemaphoreTest.java 65 long startTime = System.nanoTime();
67 if (millisElapsedSince(startTime) > LONG_DELAY_MS)
79 long startTime = System.nanoTime();
81 if (millisElapsedSince(startTime) > LONG_DELAY_MS)
189 long startTime = System.nanoTime();
192 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
202 long startTime = System.nanoTime();
205 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
548 long startTime = System.nanoTime();
570 assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/
GenericRequest.java 62 private long startTime;
211 startTime = LogTime.getLogTime();
228 logV("finished run method in " + LogTime.getElapsedMillis(startTime));
300 logV("Got onSizeReady in " + LogTime.getElapsedMillis(startTime));
318 logV("finished setup for calling load in " + LogTime.getElapsedMillis(startTime));
325 logV("finished onSizeReady in " + LogTime.getElapsedMillis(startTime));
368 logV("Resource ready in " + LogTime.getElapsedMillis(startTime) + " size: "
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaFragment.java 320 } else if (event.startTime != null) {
321 mTime.set(event.startTime);
372 (event.selectedTime != null) ? event.selectedTime : event.startTime;
375 search(event.query, event.startTime);
409 event.startTime.timezone = Time.TIMEZONE_UTC;
415 Log.d(TAG, "showEventInfo: start: " + new Date(event.startTime.toMillis(true)));
421 long startMillis = event.startTime.toMillis(true);
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 333 long startTime, float friction) {
337 mPrevTime = startTime;
370 DragObject d, PointF vel, final long startTime, final int duration,
375 return new FlingAlongVectorAnimatorUpdateListener(dragLayer, vel, from, startTime,
399 final long startTime = AnimationUtils.currentAnimationTimeMillis();
416 startTime) / duration);
426 updateCb = createFlingAlongVectorAnimatorListener(dragLayer, d, vel, startTime,
  /packages/apps/Calendar/src/com/android/calendar/
Event.java 130 public int startTime; // Start and end time are in minutes since midnight
167 e.startTime = startTime;
188 dest.startTime = startTime;
209 e.startTime = 0;
398 e.startTime = cEvents.getInt(PROJECTION_START_MINUTE_INDEX);
548 Log.e("Cal", "+ startTime = " + startTime);
572 && (startTime != endTime || startDay != endDay))
    [all...]

Completed in 1021 milliseconds

1 2 3 4 5 67 8 91011>>