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

<<11121314151617181920>>

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 485 final String startTime = values.getAsString(Calls.DATE);
488 if (startTime == null || number == null) {
494 lastSynced = Long.valueOf(startTime);
497 + startTime);
503 args[0] = startTime;
  /external/chromium_org/content/renderer/input/
input_handler_proxy.cc 419 fling_parameters_.startTime = gesture_event.timeStampSeconds;
560 fling_parameters_.startTime = gesture_event.timeStampSeconds;
616 if (!fling_parameters_.startTime ||
617 monotonic_time_sec <= fling_parameters_.startTime ||
618 monotonic_time_sec >= fling_parameters_.startTime +
620 fling_parameters_.startTime = monotonic_time_sec;
627 fling_curve_->apply(monotonic_time_sec - fling_parameters_.startTime,
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
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),
CountersGraph.js 124 * @param {number} startTime
127 setWindowTimes: function(startTime, endTime)
129 this._calculator.setWindow(startTime, endTime);
188 if (record.startTime() <= time && time <= record.endTime()) {
MemoryCountersGraph.js 80 counter.appendSample(record.endTime() || record.startTime(), counters[name]);
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
ProviderPerfActivity.java 422 long startTime = System.nanoTime();
433 long duration = System.nanoTime() - startTime;
612 long startTime = SystemClock.uptimeMillis();
623 long duration = SystemClock.uptimeMillis() - startTime;
641 long startTime = SystemClock.uptimeMillis();
646 values.put("value", (mode == MODE_WRITE ? (""+startTime) : "foo"));
653 long duration = SystemClock.uptimeMillis() - startTime;
  /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/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 152 long startTime = SystemClock.uptimeMillis();
219 stopTime - startTime,
220 startTime % 10000,
  /external/netperf/
netcpu_ntperf.c 97 LARGE_INTEGER StartTime;
236 PerfCntrs->StartTime = PerfCntrs->EndTime;
340 PerfCntrs->StartTime.QuadPart;
  /frameworks/base/cmds/input/src/com/android/commands/input/
Input.java 207 long startTime = now;
208 long endTime = startTime + duration;
210 long elapsedTime = now - startTime;
  /libcore/libart/src/main/java/java/lang/
Daemons.java 268 long startTime = FinalizerDaemon.INSTANCE.finalizingStartedNanos;
269 sleepFor(startTime, MAX_FINALIZE_NANOS);
274 FinalizerDaemon.INSTANCE.finalizingStartedNanos != startTime;
  /packages/apps/Calendar/src/com/android/calendar/
AllInOneActivity.java 670 info.startTime = new Time();
671 info.startTime.set(begin);
    [all...]
  /cts/tests/tests/database/src/android/database/sqlite/cts/
SQLiteQueryBuilderTest.java 370 final long startTime = System.nanoTime();
383 final long waitTime = System.nanoTime() - startTime;
432 final long startTime = System.nanoTime();
445 final long waitTime = System.nanoTime() - startTime;
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
CtsXmlResultReporter.java 75 static final String STARTTIME_ATTR = "starttime";
391 * @param startTime the user-friendly starting time of the test invocation
395 private void serializeResultsDoc(KXmlSerializer serializer, String startTime, String endTime)
399 serializer.attribute(ns, STARTTIME_ATTR, startTime);
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestResultsTest.java 41 "<Test name=\"testExample\" endtime=\"et\" starttime=\"st\" result=\"fail\" >" +
  /dalvik/tools/dmtracedump/
CreateTestTrace.c 369 unsigned long long startTime = tv.tv_sec;
370 startTime = (startTime << 32) | tv.tv_usec;
375 write8LE(dataFp, startTime);
  /external/chromium_org/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 50 'startTime': oneWeekAgo // that was accessed less than one week ago.
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptGCEvent.cpp 105 (*i)->didGC(gcEventData->startTime(), endTime, collectedBytes);
  /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/inspector/
ScriptProfile.cpp 57 double ScriptProfile::startTime() const
  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 81 const deUint64 startTime = deGetMicroseconds();
89 if (deGetMicroseconds()-startTime >= deUint64(1000*milliseconds))
282 const deUint64 startTime = deGetMicroseconds();
285 curDuration = deGetMicroseconds()-startTime;
  /frameworks/base/core/java/android/view/animation/
AnimationSet.java 268 long startTime = Long.MAX_VALUE;
275 startTime = Math.min(startTime, a.getStartTime());
278 return startTime;
  /frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
DownloadManagerBaseTest.java 190 long startTime = SystemClock.uptimeMillis();
193 if (SystemClock.uptimeMillis() - startTime > timeout) {
213 long startTime = SystemClock.uptimeMillis();
216 if (SystemClock.uptimeMillis() - startTime > timeout) {
  /libcore/jsr166-tests/src/test/java/jsr166/
PriorityBlockingQueueTest.java 358 long startTime = System.nanoTime();
360 assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS);
362 long startTime = System.nanoTime();
364 assertTrue(millisElapsedSince(startTime) >= timeoutMillis());
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlarmScheduler.java 250 for (Long startTime : startTimes) {
251 long alarmTime = startTime -
262 msg.append(", startTime:").append(startTime);

Completed in 1006 milliseconds

<<11121314151617181920>>