Searched defs:time (Results 451 - 475 of 1391) sorted by relevance

<<11121314151617181920>>

/external/lldb/test/functionalities/thread/create_during_step/
H A DTestCreateDuringStep.py5 import os, time namespace
/external/lldb/test/functionalities/thread/exit_during_step/
H A DTestExitDuringStep.py5 import os, time namespace
/external/lldb/test/functionalities/thread/step_out/
H A DTestThreadStepOut.py5 import os, time namespace
/external/lldb/test/lang/c/array_types/
H A DTestArrayTypes.py3 import os, time namespace
/external/lldb/test/lang/cpp/class_static/
H A DTestStaticVariables.py5 import os, time namespace
/external/lldb/test/lang/cpp/class_types/
H A DTestClassTypes.py3 import os, time namespace
H A DTestClassTypesDisassembly.py5 import os, time namespace
/external/lldb/test/lang/objc/foundation/
H A DTestObjCMethods.py6 import os, time namespace
/external/lldb/test/pexpect-2.4/examples/
H A Dhive.py69 import sys, os, re, optparse, traceback, types, time, getpass namespace
415 start_time = time.time()
423 if options.verbose: print time.asctime()
425 if options.verbose: print time.asctime()
427 if options.verbose: print (time.time() - start_time) / 60.0
/external/lldb/test/
H A Dprogress.py4 import time namespace
146 time.sleep(0.3)
/external/lldb/test/python_api/formatters/
H A DTestFormattersSBAPI.py3 import os, sys, time namespace
/external/lldb/test/python_api/frame/
H A DTestFrames.py6 import os, time namespace
/external/lldb/test/python_api/hello_world/
H A DTestHelloWorld.py3 import os, sys, time namespace
6 import time namespace
143 # Give the subprocess time to start and wait for user input
144 time.sleep(0.25)
168 # Give the subprocess time to start and wait for user input
169 time.sleep(0.25)
/external/lldb/test/python_api/lldbutil/iter/
H A DTestLLDBIterator.py5 import os, time namespace
/external/nist-sip/java/gov/nist/core/
H A DServerLogger.java34 void logMessage(SIPMessage message, String from, String to, boolean sender, long time); argument
37 boolean sender, long time);
36 logMessage(SIPMessage message, String from, String to, String status, boolean sender, long time) argument
/external/proguard/src/proguard/gui/splash/
H A DBufferedSprite.java106 public void paint(Graphics graphics, long time) argument
108 if (time != cachedTime)
132 sprite.paint(bufferGraphics, time);
136 cachedTime = time;
141 bufferX + x.getInt(time),
142 bufferY + y.getInt(time),
/external/protobuf/gtest/test/
H A Dgtest-port_test.cc38 #include <time.h>
122 timespec time; local
123 time.tv_sec = 0;
124 time.tv_nsec = 100L * 1000 * 1000; // .1 seconds.
125 nanosleep(&time, NULL);
/external/skia/debugger/QT/
H A DSkListWidget.cpp69 float time = index.data(Qt::UserRole + 4).toFloat(); local
71 drawTime.setNum(time, 'f', 2);
96 if (time >= 0.0) {
99 // don't need time offset
110 if (time >= 0.0) {
111 // Draw time
/external/skia/src/images/
H A DSkMovie.cpp12 // We should never see this in normal operation since our time values are
53 bool SkMovie::setTime(SkMSec time) argument
56 if (time > dur)
57 time = dur;
60 if (time != fCurrTime)
62 fCurrTime = time;
63 changed = this->onSetTime(time);
/external/smack/src/org/jivesoftware/smackx/workgroup/
H A DQueueUser.java42 * @param time the estimate of how much longer the customer will be in the queue in seconds
45 public QueueUser (String uid, int position, int time, Date joinedAt) { argument
50 this.estimatedTime = time;
63 * this instance embodies is only a time update instead
70 * @return the estimated time remaining of the customer in the queue in seconds, or -1 if
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_imaadpcm.c52 static EAS_RESULT IMADecoderLocate (EAS_DATA_HANDLE pEASData, S_PCM_STATE *pState, EAS_I32 time);
280 static EAS_RESULT IMADecoderLocate (EAS_DATA_HANDLE pEASData, S_PCM_STATE *pState, EAS_I32 time) argument
287 /* no need to calculate if time is zero */
288 if (time == 0)
306 secs = time / 1000;
307 msecs = time - (secs * 1000);
317 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x2380b977, 0x00000006 , time, temp);
H A Deas_rtttldata.h55 EAS_I32 time; /* current time in 256ths of a msec */ member in struct:__anon30877
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_imaadpcm.c52 static EAS_RESULT IMADecoderLocate (EAS_DATA_HANDLE pEASData, S_PCM_STATE *pState, EAS_I32 time);
280 static EAS_RESULT IMADecoderLocate (EAS_DATA_HANDLE pEASData, S_PCM_STATE *pState, EAS_I32 time) argument
287 /* no need to calculate if time is zero */
288 if (time == 0)
306 secs = time / 1000;
307 msecs = time - (secs * 1000);
317 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x2380b977, 0x00000006 , time, temp);
H A Deas_rtttldata.h55 EAS_I32 time; /* current time in 256ths of a msec */ member in struct:__anon30927
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_imaadpcm.c52 static EAS_RESULT IMADecoderLocate (EAS_DATA_HANDLE pEASData, S_PCM_STATE *pState, EAS_I32 time);
280 static EAS_RESULT IMADecoderLocate (EAS_DATA_HANDLE pEASData, S_PCM_STATE *pState, EAS_I32 time) argument
287 /* no need to calculate if time is zero */
288 if (time == 0)
306 secs = time / 1000;
307 msecs = time - (secs * 1000);
317 EAS_ReportEx(_EAS_SEVERITY_NOFILTER, 0x2380b977, 0x00000006 , time, temp);

Completed in 221 milliseconds

<<11121314151617181920>>