HomeSort by relevance Sort by last modified time
    Searched refs:milliseconds (Results 101 - 125 of 210) sorted by null

1 2 3 45 6 7 8 9

  /frameworks/base/core/java/android/widget/
ViewFlipper.java 120 * @param milliseconds
121 * time in milliseconds
124 public void setFlipInterval(int milliseconds) {
125 mFlipInterval = milliseconds;
  /packages/apps/Email/tests/src/com/android/email/
ThrottleTest.java 41 private void advanceClock(int milliseconds) {
42 mClock.advance(milliseconds);
  /external/quake/quake/src/QW/scitech/include/
mglwin.h 137 void MGLAPI MGL_beep(m_int freq,m_int milliseconds);
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGLWIN.H 137 void MGLAPI MGL_beep(m_int freq,m_int milliseconds);
  /frameworks/native/include/utils/
Timers.h 74 static inline nsecs_t milliseconds(nsecs_t v) { return ms2ns(v); } function
93 * Returns the number of milliseconds to wait between the reference time and the timeout time.
95 * If the timeout is more than INT_MAX milliseconds in the future relative to the reference time,
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.condition/thread.condition.condvar/
wait_until.pass.cpp 27 typedef std::chrono::milliseconds duration;
wait_until_pred.pass.cpp 28 typedef std::chrono::milliseconds duration;
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.condition/thread.condition.condvarany/
wait_until.pass.cpp 26 typedef std::chrono::milliseconds duration;
wait_until_pred.pass.cpp 28 typedef std::chrono::milliseconds duration;
  /frameworks/base/services/java/com/android/server/
VibratorService.java 77 native static void vibratorOn(long milliseconds);
192 public void vibrate(int uid, String packageName, long milliseconds, IBinder token) {
201 if (milliseconds <= 0 || (mCurrentVibration != null
202 && mCurrentVibration.hasLongerTimeout(milliseconds))) {
204 // longer than milliseconds.
208 Vibration vib = new Vibration(token, milliseconds, uid, packageName);
  /external/chromium/third_party/libjingle/source/talk/base/
thread.cc 189 bool Thread::SleepMs(int milliseconds) {
191 ::Sleep(milliseconds);
197 ts.tv_sec = milliseconds / 1000;
198 ts.tv_nsec = (milliseconds % 1000) * 1000000;
  /external/webkit/Tools/DumpRenderTree/chromium/
EventSender.cpp 82 int milliseconds; // For LeapForward. member in struct:SavedEvent
87 , milliseconds(0) {}
654 int milliseconds = arguments[0].toInt32(); local
658 savedEvent.milliseconds = milliseconds;
661 doLeapForward(milliseconds);
664 void EventSender::doLeapForward(int milliseconds)
666 advanceEventTime(milliseconds);
719 doLeapForward(e.milliseconds);
    [all...]
EventSender.h 124 static void doLeapForward(int milliseconds);
  /frameworks/base/core/java/android/hardware/input/
InputManager.java 800 public void vibrate(long milliseconds) {
801 vibrate(new long[] { 0, milliseconds}, -1);
820 public void vibrate(int owningUid, String owningPackage, long milliseconds) {
821 vibrate(milliseconds);
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
WebViewEventSender.java 74 public void leapForward(int milliseconds) {
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.shared_future/
wait_for.pass.cpp 21 typedef std::chrono::milliseconds ms;
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.unique_future/
wait_for.pass.cpp 21 typedef std::chrono::milliseconds ms;
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/thread.mutex/thread.once/thread.once.callonce/
call_once.pass.cpp 21 typedef std::chrono::milliseconds ms;
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
EventSendingController.cpp 140 void EventSendingController::leapForward(int milliseconds)
142 m_time += milliseconds / 1000.0;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 255 protected static void sleep(final int milliseconds) {
257 Thread.sleep(milliseconds);
  /external/tremolo/Tremolo/
vorbisfile.c 973 /* returns: total milliseconds of content if i==-1
974 milliseconds in that logical bitstream for i==0 to n
    [all...]
  /external/webrtc/src/modules/audio_processing/aecm/
aecm_core.c 467 milliseconds = (unsigned int)(diff__ & 0xffffffff);
468 WriteFile (logFile, &milliseconds, sizeof(unsigned int), &temp, NULL);
1558 unsigned int milliseconds; local
    [all...]
  /libcore/luni/src/main/java/java/util/
Calendar.java 165 * {@code f} is changed immediately, the calendar's milliseconds is not
213 * immediate recomputation of the calendar's milliseconds and all fields.
329 * A time in milliseconds since January 1, 1970. See {@code isTimeSet}.
645 * raw offset from GMT in milliseconds.
651 * daylight savings offset in milliseconds.
    [all...]
SimpleTimeZone.java 173 * the daylight savings time difference in milliseconds.
207 * the daylight savings time difference in milliseconds.
236 * mode specifier, the daylight savings time difference in milliseconds.
255 * the time of day in milliseconds on which daylight savings
269 * the time of day in milliseconds on which daylight savings
274 * the daylight savings time difference in milliseconds.
543 * Sets the daylight savings offset in milliseconds for this {@code SimpleTimeZone}.
545 * @param milliseconds
546 * the daylight savings offset in milliseconds.
548 public void setDSTSavings(int milliseconds) {
    [all...]
  /external/icu4c/i18n/unicode/
timezone.h 97 * <li>A time zone offset; that, is the number of milliseconds to add or subtract
186 * @param rawOffset An offset from GMT in milliseconds, ignoring
221 * @param rawOffset an offset from GMT in milliseconds, ignoring
380 * Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add
398 * @param millis The reference date's milliseconds in day, local standard time
400 * @return The offset in milliseconds to add to GMT to get local time.
420 * @param milliseconds the millis in day in <em>standard</em> local time.
427 uint8_t dayOfWeek, int32_t milliseconds,
438 * units of milliseconds from January 1, 1970 0:00 GMT, either GMT
457 * Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to ad
    [all...]

Completed in 1192 milliseconds

1 2 3 45 6 7 8 9