/external/glide/library/src/main/java/com/bumptech/glide/load/engine/ |
Engine.java | 103 long startTime = LogTime.getLogTime(); 118 Log.v(TAG, "loaded resource from cache in " + LogTime.getElapsedMillis(startTime)); 130 Log.v(TAG, "loaded resource from active resources in " + LogTime.getElapsedMillis(startTime)); 143 Log.v(TAG, "added to existing load in " + LogTime.getElapsedMillis(startTime)); 156 Log.v(TAG, "finished load in engine in " + LogTime.getElapsedMillis(startTime));
|
/external/svox/pico/lib/ |
picopal.c | 494 picopal_clock_t startTime; 497 LARGE_INTEGER startTime; 514 dt = picopal_clock() - startTime; 526 dt = now.QuadPart - GLOB(startTime).QuadPart; 532 dt = (double)(now.QuadPart - startTime.QuadPart); 539 dt = GetTickCount() - startTime.LowPart;
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
LinkedBlockingDequeTest.java | 625 long startTime = System.nanoTime(); 627 assertTrue(millisElapsedSince(startTime) >= timeoutMillis()); 712 long startTime = System.nanoTime(); 714 assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS); 716 long startTime = System.nanoTime(); 718 assertTrue(millisElapsedSince(startTime) >= timeoutMillis()); 857 long startTime = System.nanoTime(); 859 assertTrue(millisElapsedSince(startTime) >= timeoutMillis()); [all...] |
ExchangerTest.java | 101 long startTime = System.nanoTime(); 106 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/downloads/download_manager/ |
popup.js | 158 item.startTime = new Date(item.startTime); 169 (item.startTime.getTime() < items_div.childNodes[ 170 items_div.childNodes.length - 1].item.startTime.getTime())) { 172 } else if (item.startTime.getTime() > 173 items_div.childNodes[0].item.startTime.getTime()) { 178 item.startTime.getTime(), 180 return target - other.item.startTime.getTime(); 183 if (adjacent_item.startTime.getTime() < item.startTime.getTime()) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
TracingTimelineModel.js | 241 var startTime = event.startTime; 245 endTime = events[i + 1].startTime; 252 this._processThreadEvents(startTime, endTime, event.thread, thread); 381 if (event.phase !== WebInspector.TracingModel.Phase.AsyncEnd && recordStack[0]._event.endTime >= event.startTime) 385 top.setEndTime(event.startTime); 394 } else if (top._event.endTime >= event.startTime) { 458 * @param {number} startTime 463 _processThreadEvents: function(startTime, endTime, mainThread, thread) 467 var i = events.lowerBound(startTime, function (time, event) { return time - event.startTime }) [all...] |
TimelineView.js | 134 var position = this._calculator.computePosition(record.startTime()); 164 var frameStart = this._calculator.computePosition(frame.startTime); 177 frameStrip.textContent = Number.millisToString(frame.endTime - frame.startTime, true); 196 this._delegate.requestWindowTimes(frameBar._frame.startTime, frameBar._frame.endTime); 346 var idle = presentationRecord.endTime() - presentationRecord.startTime(); 423 * @param {number} startTime 426 setWindowTimes: function(startTime, endTime) 428 this._windowStartTime = startTime; 430 this._presentationModel.setWindowTimes(startTime, endTime); 537 var windowStartTime = startIndex ? recordsInWindow[startIndex].startTime() : this._model.minimumRecordTime() [all...] |
/frameworks/base/core/java/com/android/internal/os/ |
ZygoteConnection.java | 111 private void checkTime(long startTime, String where) { 113 if ((now-startTime) > 1000) { 115 Slog.w(TAG, "Slow operation: " + (now-startTime) + "ms so far, now at " + where); 148 long startTime = SystemClock.elapsedRealtime(); 159 checkTime(startTime, "zygoteConnection.runOnce: readArgumentList"); 197 checkTime(startTime, "zygoteConnection.runOnce: apply security policies"); 202 checkTime(startTime, "zygoteConnection.runOnce: apply security policies"); 245 checkTime(startTime, "zygoteConnection.runOnce: preForkAndSpecialize"); 250 checkTime(startTime, "zygoteConnection.runOnce: postForkAndSpecialize"); [all...] |
/external/chromium_org/third_party/icu/source/i18n/ |
simpletz.cpp | 67 startTime(0), 164 this->startTime = savingsStartTime; 212 startTime = right.startTime; 313 startTime = time; 479 (int8_t)startDay, startTime); 758 startTime == that->startTime && [all...] |
/external/icu/icu4c/source/i18n/ |
simpletz.cpp | 67 startTime(0), 164 this->startTime = savingsStartTime; 212 startTime = right.startTime; 313 startTime = time; 479 (int8_t)startDay, startTime); 758 startTime == that->startTime && [all...] |
/external/deqp/modules/gles3/performance/ |
es3pBufferDataUploadTests.cpp | 549 deUint64 startTime; 554 startTime = deGetMicroseconds(); 558 return endTime - startTime; 591 deUint64 startTime; 594 startTime = deGetMicroseconds(); 598 sectionTimes[sectionNdx] = endTime - startTime; 647 const deUint64 startTime = deGetMicroseconds(); 652 totalTime = deGetMicroseconds() - startTime; [all...] |
/packages/apps/Exchange/src/com/android/exchange/adapter/ |
CalendarSyncParser.java | 283 * @param startTime the start time for the Event 287 /*package*/ void setTimeRelatedValues(ContentValues cv, long startTime, long endTime, 289 // If there's no startTime, the event will be found to be invalid, so return 290 if (startTime < 0) return; 293 if (endTime < 0) endTime = startTime + (30 * DateUtils.MINUTE_IN_MILLIS); 297 startTime = CalendarUtilities.getUtcAllDayCalendarTime(startTime, mLocalTimeZone); 323 cv.put(Events.DTSTART, startTime); 327 cv.put(Events.DURATION, "P" + ((endTime - startTime) / DateUtils.DAY_IN_MILLIS) + "D"); 330 cv.put(Events.DURATION, "P" + ((endTime - startTime) / DateUtils.MINUTE_IN_MILLIS) + "M") [all...] |
/frameworks/native/opengl/tools/glgen2/registry/ |
genheaders.py | 82 startTime = None 84 global startTime 85 startTime = time.clock() 87 global startTime 90 write(msg, endTime - startTime) 91 startTime = None
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
FlameChart.js | 38 * @param {number} startTime 41 requestWindowTimes: function(startTime, endTime) { } 128 * @param {number} startTime 132 dividerOffsets: function(startTime, endTime) { }, 232 * @return {?{startTime: number, endTime: number}} 432 * @param {number} startTime 435 setWindowTimes: function(startTime, endTime) 439 this._timeWindowLeft = startTime; 447 [{from: this._timeWindowLeft, to: startTime}, {from: this._timeWindowRight, to: endTime}], 5, 449 this._pendingAnimationTimeLeft = startTime; [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
TimelineRecordFactory.h | 51 static PassRefPtr<TypeBuilder::Timeline::TimelineEvent> createGenericRecord(double startTime, int maxCallStackDepth, const String& type, PassRefPtr<JSONObject> data); 52 static PassRefPtr<TypeBuilder::Timeline::TimelineEvent> createBackgroundRecord(double startTime, const String& thread, const String& type, PassRefPtr<JSONObject> data);
|
/external/chromium_org/third_party/icu/source/test/perf/ubrkperf/ |
ubrkperfold.cpp | 285 unsigned long startTime = timeGetTime(); 303 startTime = timeGetTime(); 310 elapsedTime = timeGetTime()-startTime; 334 startTime = timeGetTime(); 346 elapsedTime = timeGetTime()-startTime; 371 unsigned long startTime = timeGetTime(); 388 startTime = timeGetTime(); 397 elapsedTime = timeGetTime()-startTime;
|
/external/chromium_org/third_party/skia/tools/skpdiff/ |
SkDifferentPixelsMetric_cpu.cpp | 20 double startTime = get_seconds(); 118 result->timeElapsed = get_seconds() - startTime;
|
/external/icu/icu4c/source/test/perf/ubrkperf/ |
ubrkperfold.cpp | 285 unsigned long startTime = timeGetTime(); 303 startTime = timeGetTime(); 310 elapsedTime = timeGetTime()-startTime; 334 startTime = timeGetTime(); 346 elapsedTime = timeGetTime()-startTime; 371 unsigned long startTime = timeGetTime(); 388 startTime = timeGetTime(); 397 elapsedTime = timeGetTime()-startTime;
|
/external/junit/src/junit/textui/ |
TestRunner.java | 115 long startTime= System.currentTimeMillis(); 118 long runTime= endTime-startTime;
|
/frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/ |
ConnectionUtil.java | 369 long startTime = System.currentTimeMillis(); 371 if ((System.currentTimeMillis() - startTime) > timeout) { 435 long startTime = System.currentTimeMillis(); 437 if ((System.currentTimeMillis() - startTime) > timeout) { 488 long startTime = System.currentTimeMillis(); 490 if ((System.currentTimeMillis() - startTime) > timeout) { 593 long startTime = System.currentTimeMillis(); 595 if ((System.currentTimeMillis() - startTime) > WIFI_SCAN_TIMEOUT) {
|
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/ |
KeyguardServiceWrapper.java | 173 public void startKeyguardExitAnimation(long startTime, long fadeoutDuration) { 175 mService.startKeyguardExitAnimation(startTime, fadeoutDuration);
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
SmsBroadcastUndelivered.java | 98 long startTime = System.nanoTime(); 166 + ((System.nanoTime() - startTime) / 1000000) + " ms");
|
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
IndicatorControlWheelContainer.java | 173 public void startTimeLapseAnimation(int timeLapseInterval, long startTime) { 175 timeLapseInterval, startTime);
|
/packages/providers/CalendarProvider/ |
maketests.py | 105 startTime = w.getAttribute("startTime")
107 instances.append((startTime,endTime))
|
/pdk/apps/TestingCamera/src/com/android/testingcamera/ |
CallbackProcessor.java | 104 long startTime = SystemClock.elapsedRealtime(); 112 if (endTime - startTime > kStopTimeout) {
|