HomeSort by relevance Sort by last modified time
    Searched full:starttime (Results 351 - 375 of 711) sorted by null

<<11121314151617181920>>

  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestRunner.java 120 long startTime = SystemClock.uptimeMillis();
167 long runTime = SystemClock.uptimeMillis() - startTime;
  /frameworks/base/core/java/android/text/format/
DateUtils.java 244 * Returns a string describing the elapsed time since startTime.
245 * @param startTime some time in the past.
249 public static CharSequence getRelativeTimeSpanString(long startTime) {
250 return getRelativeTimeSpanString(startTime, System.currentTimeMillis(), MINUTE_IN_MILLIS);
358 * Return string describing the elapsed time since startTime formatted like
426 Time startTime = new Time();
427 startTime.set(day);
428 int startDay = Time.getJulianDay(day, startTime.gmtoff);
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
InputConnectionWrapper.java 176 long startTime = SystemClock.uptimeMillis();
177 long endTime = startTime + MAX_WAIT_TIME_MILLIS;
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
WifiStressTest.java 273 long startTime = SystemClock.uptimeMillis();
279 long connectionTime = SystemClock.uptimeMillis() - startTime;
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/reader/
perf_reader.c 111 ulData1 = read_U32(fLog); /* startTime.sec */
112 ulData2 = read_U32(fLog); /* startTime.usec */
  /packages/apps/Gallery/src/com/android/camera/
ImageViewTouchBase.java 324 final long startTime = System.currentTimeMillis();
329 float currentMs = Math.min(durationMs, now - startTime);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
ContactsBinaryDictionary.java 272 final long startTime = SystemClock.uptimeMillis();
313 Log.d(TAG, "No contacts changed. (runtime = " + (SystemClock.uptimeMillis() - startTime)
  /external/chromium_org/third_party/icu/source/tools/tzcode/
zic.c 122 static void addtt(zic_t starttime, int type);
2104 register zic_t starttime, untiltime; local
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
zic.c 122 static void addtt(zic_t starttime, int type);
2104 register zic_t starttime, untiltime; local
    [all...]
  /external/chromium-trace/trace-viewer/src/tracing/importer/
timeline_stream_importer.js 44 * 's': startTime,
  /external/chromium_org/cc/blink/
web_animation_impl.cc 98 double WebCompositorAnimationImpl::startTime() const {
  /external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimationsTestHelper.h 85 MOCK_CONST_METHOD0(startTime, double());
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TimelineEventOverview.js 93 var recordStart = Math.floor((record.startTime() - timeOffset) * scale);
TimelineUIUtilsImpl.js 280 var startTime = Number.millisToString(record.startTime() - record._model.minimumRecordTime());
281 return WebInspector.UIString("%s at %s", title, startTime);
519 contentHelper.appendTextRow(WebInspector.UIString("Start Time"), Number.millisToString(record.startTime() - model.minimumRecordTime()));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
SplitView.js 517 var startTime;
525 if (!startTime) {
528 startTime = window.performance.now();
529 } else if (window.performance.now() < startTime + animationTime) {
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.cpp 148 utterance->dispatchEvent(SpeechSynthesisEvent::create(type, charIndex, (currentTime() - utterance->startTime()), name));
  /external/chromium_org/third_party/webrtc/modules/video_capture/test/
video_capture_unittest.cc 557 TickTime startTime = TickTime::Now();
559 while ((TickTime::Now() - startTime).Milliseconds() < testTime * 1000) {
574 startTime = TickTime::Now();
575 while ((TickTime::Now() - startTime).Milliseconds() < testTime * 1000) {
  /external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/
unit_test.cc 152 int64_t startTime = TickTime::MillisecondTimestamp();
153 while (TickTime::MillisecondTimestamp() - startTime < kMaxWaitEncTimeMs)
166 int64_t startTime = TickTime::MillisecondTimestamp();
167 while (TickTime::MillisecondTimestamp() - startTime < kMaxWaitDecTimeMs)
  /external/chromium_org/tools/telemetry/telemetry/core/backends/chrome/
inspector_network.py 101 event['startTime'] = self.timestamp
  /external/srec/srec/include/
fpi_tgt.h 105 unsigned long startTime; /* Time of first frame of this utt */
  /frameworks/base/services/core/java/com/android/server/display/
AutomaticBrightnessController.java 312 long startTime = (mAmbientLightRingBuffer.getTime(i) - now);
313 float weight = calculateWeight(startTime, endTime);
317 (startTime) + ", " +
322 endTime = startTime;
  /libcore/jsr166-tests/src/test/java/jsr166/
DelayQueueTest.java 392 long startTime = System.nanoTime();
394 assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
396 long startTime = System.nanoTime();
398 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
LinkedTransferQueueTest.java 250 long startTime = System.nanoTime();
252 assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
254 long startTime = System.nanoTime();
256 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java     [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/
UtilsTests.java 235 Event buildTestEvent(int startTime, int endTime, boolean allDay, int startDay, int endDay) {
237 e.startTime = startTime;
242 e.startMillis = e.startDay * 1000L * 3600L * 24L + e.startTime * 60L * 1000L;

Completed in 3967 milliseconds

<<11121314151617181920>>