/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
pystone.py | 89 starttime = clock() 92 nulltime = clock() - starttime 104 starttime = clock() 130 benchtime = clock() - starttime - nulltime
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nfc/hce/ |
SimpleReaderActivity.java | 106 long startTime = System.currentTimeMillis(); 130 Long.toString(System.currentTimeMillis() - startTime) + " ms.\n\n"); 140 Long.toString(System.currentTimeMillis() - startTime) + " ms.\n\n");
|
/external/chromium_org/content/test/data/media/ |
webrtc_test_utilities.js | 119 var startTime = new Date().getTime(); 132 deltaTime = (currentTime - startTime) / 1000; 133 startTime = currentTime;
|
/external/chromium_org/third_party/WebKit/Source/core/animation/ |
AnimationNodeTest.cpp | 122 EXPECT_EQ(0, animationNode->startTime()); 131 EXPECT_EQ(0, animationNode->startTime()); 142 EXPECT_EQ(0, animationNode->startTime()); 153 EXPECT_EQ(0, animationNode->startTime()); 164 EXPECT_EQ(0, animationNode->startTime()); 377 EXPECT_EQ(0, animationNode->startTime()); 386 EXPECT_EQ(0, animationNode->startTime()); 397 EXPECT_EQ(0, animationNode->startTime()); 595 EXPECT_EQ(0, animationNode->startTime()); 626 EXPECT_EQ(0, animationNode->startTime()); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/ |
VTTCue.h | 66 static PassRefPtrWillBeRawPtr<VTTCue> create(Document& document, double startTime, double endTime, const String& text) 68 return adoptRefWillBeNoop(new VTTCue(document, startTime, endTime, text)); 146 VTTCue(Document&, double startTime, double endTime, const String& text);
|
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
AudioParam.cpp | 159 double startTime = context()->currentTime(); 160 double endTime = startTime + numberOfValues / sampleRate; 164 m_value = m_timeline.valuesForTimeRange(startTime, endTime, narrowPrecisionToFloat(m_value), values, numberOfValues, sampleRate, sampleRate);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g711/test/ |
testG711.cc | 53 double starttime; local 117 starttime = clock() / (double) CLOCKS_PER_SEC_G711; /* Runtime statistics */ 168 runtime = (double)(clock() / (double) CLOCKS_PER_SEC_G711 - starttime);
|
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/g722/test/ |
testG722.cc | 58 double starttime; local 123 starttime = clock()/(double)CLOCKS_PER_SEC_G722; 130 runtime += (double)((clock()/(double)CLOCKS_PER_SEC_G722)-starttime);
|
/external/chromium_org/third_party/webrtc/modules/video_coding/codecs/test_framework/ |
normal_test.cc | 211 double starttime = 0; local 215 starttime = clock()/(double)CLOCKS_PER_SEC; 239 _totalEncodeTime += endtime - starttime;
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/ |
FlatPackageWriterImpl.java | 141 long startTime = 0; 148 FileOutputStream fos = new FileOutputStream(new File(bitRateOutputDir, Long.toString(startTime))); 149 startTime += fragmentTimes[currentFragment++];
|
/external/objenesis/tck/src/org/objenesis/tck/ |
TextReporter.java | 69 private long startTime; 110 startTime = System.currentTimeMillis(); 138 totalTime += System.currentTimeMillis() - startTime;
|
/frameworks/base/core/java/com/android/internal/net/ |
VpnConfig.java | 98 public long startTime = -1; 158 out.writeLong(startTime); 183 config.startTime = in.readLong();
|
/frameworks/base/test-runner/src/android/test/ |
InstrumentationCoreTestRunner.java | 102 private long startTime; 113 startTime = System.currentTimeMillis(); 126 long timeTaken = System.currentTimeMillis() - startTime;
|
/frameworks/base/tests/BrowserPowerTest/src/com/android/browserpowertest/ |
PowerTestActivity.java | 56 private long startTime; 125 startTime = System.currentTimeMillis(); 266 pageLoadTime = System.currentTimeMillis() - startTime;
|
/libcore/jsr166-tests/src/test/java/jsr166/ |
ReentrantLockTest.java | 75 long startTime = System.nanoTime(); 77 if (millisElapsedSince(startTime) > LONG_DELAY_MS) 392 long startTime = System.nanoTime(); 395 assertTrue(millisElapsedSince(startTime) >= timeoutMillis); 487 long startTime = System.nanoTime(); 493 assertTrue(millisElapsedSince(startTime) < LONG_DELAY_MS); 521 long startTime = System.nanoTime(); 526 assertTrue(millisElapsedSince(startTime) >= timeoutMillis); 543 long startTime = System.nanoTime(); 546 assertTrue(millisElapsedSince(startTime) >= timeoutMillis) [all...] |
/packages/apps/Calendar/src/com/android/calendar/agenda/ |
AgendaByDayAdapter.java | 312 long startTime = cursor.getLong(AgendaWindowAdapter.INDEX_BEGIN); 317 startTime = Utils.convertAlldayUtcToLocal(tempTime, startTime, mTimeZone); 325 startTime = Math.max(startTime, adapterStartTime); 383 long nextMidnight = Utils.getNextMidnight(tempTime, startTime, mTimeZone); 388 rowInfo.add(new RowInfo(TYPE_MEETING, startDay, position, id, startTime, 392 rowInfo.add(new RowInfo(TYPE_MEETING, startDay, position, id, startTime, endTime, 450 RowInfo(int type, int julianDay, int position, long id, long startTime, long endTime, 456 mEventStartTimeMilli = startTime; [all...] |
/packages/apps/Calendar/src/com/android/calendar/event/ |
EditEventActivity.java | 148 info.startTime = new Time(); 150 info.startTime.timezone = Time.TIMEZONE_UTC; 152 info.startTime.set(begin);
|
/packages/apps/Launcher3/src/com/android/launcher3/ |
MemoryTracker.java | 43 public long startTime; 53 this.startTime = start; 56 return System.currentTimeMillis() - startTime;
|
/packages/providers/CalendarProvider/ |
maketests.py | 105 startTime = w.getAttribute("startTime")
107 instances.append((startTime,endTime))
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
MediaFragmentURIParser.cpp | 79 double MediaFragmentURIParser::startTime() 197 bool MediaFragmentURIParser::parseNPTFragment(const LChar* timeString, unsigned length, double& startTime, double& endTime) 210 startTime = 0; 212 if (!parseNPTTime(timeString, length, offset, startTime)) 230 if (startTime >= endTime)
|
/packages/apps/Calendar/src/com/android/calendar/ |
SearchActivity.java | 193 event.startTime.toMillis(false), event.endTime.toMillis(false), 204 event.startTime != null ? event.startTime.toMillis(true) : -1); 225 searchEventInfo.startTime = goToTime; 361 deleteEvent(event.id, event.startTime.toMillis(false), endTime);
|
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...] |
/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...] |
/external/openssl/crypto/rand/ |
rand_win.c | 466 DWORD starttime = 0; local 499 if (good) starttime = GetTickCount(); 530 && (!good || (GetTickCount()-starttime)<MAXDELAY) 540 && (!good || (GetTickCount()-starttime)<MAXDELAY) 563 && (!good || (GetTickCount()-starttime)<MAXDELAY)); 574 if (good) starttime = GetTickCount(); 578 while (process_next(handle, &p) && (!good || (GetTickCount()-starttime)<MAXDELAY)); 586 if (good) starttime = GetTickCount(); 590 while (thread_next(handle, &t) && (!good || (GetTickCount()-starttime)<MAXDELAY)); 598 if (good) starttime = GetTickCount() [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/ |
HAREntry.js | 53 startedDateTime: new Date(this._request.startTime * 1000), 221 expires: cookie.expiresDate(new Date(this._request.startTime * 1000)), 326 startedDateTime: new Date(page.startTime * 1000), 352 var startTime = page.startTime; 353 if (time === -1 || startTime === -1) 355 return WebInspector.HAREntry._toMilliseconds(time - startTime);
|