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

1 2 3 4 56 7 8 9

  /libcore/luni/src/test/java/libcore/java/util/
OldTimeZoneTest.java 31 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) {
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.shared_future/
wait_until.pass.cpp 21 typedef std::chrono::milliseconds ms;
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.unique_future/
wait_until.pass.cpp 21 typedef std::chrono::milliseconds ms;
  /external/chromium/base/
timer_unittest.cc 17 OneShotTimerTester(bool* did_run, unsigned milliseconds = 10)
19 delay_ms_(milliseconds) {
199 OneShotTimerTester tester(&did_run, 100 /* milliseconds */);
  /external/icu4c/i18n/unicode/
simpletz.h 148 * number of milliseconds after midnight.
156 * number of milliseconds after midnight.
189 * number of milliseconds after midnight.
197 * number of milliseconds after midnight.
198 * @param savingsDST The number of milliseconds added to standard time
233 * number of milliseconds after midnight.
243 * number of milliseconds after midnight.
246 * @param savingsDST The number of milliseconds added to standard time
550 * Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add
564 * @param millis The reference date's milliseconds in day, UTT (NOT local time)
    [all...]
  /packages/apps/VideoEditor/src/com/android/videoeditor/
ProjectPickerAdapter.java 230 * Converts milliseconds into the string time format HH:mm:ss.
232 private String millisecondsToTimeString(long milliseconds) {
233 return DateUtils.formatElapsedTime(milliseconds / 1000);
  /external/webkit/Source/JavaScriptCore/runtime/
DatePrototype.cpp 286 // Converts a list of arguments sent to a Date member function into milliseconds, updating
287 // ms (representing milliseconds) and t (representing the rest of the date structure) appropriately.
292 double milliseconds = 0; local
306 milliseconds += hours * msPerHour;
314 milliseconds += minutes * msPerMinute;
322 milliseconds += seconds * msPerSecond;
328 // milliseconds
332 milliseconds += millis;
334 milliseconds += *ms;
336 *ms = milliseconds;
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/jni/
drm1_jni.c 30 #define MS_PER_SECOND 1000 /* Milliseconds per second */
31 #define MS_PER_MINUTE 60 * MS_PER_SECOND /* Milliseconds per minute */
32 #define MS_PER_HOUR 60 * MS_PER_MINUTE /* Milliseconds per hour */
33 #define MS_PER_DAY 24 * MS_PER_HOUR /* Milliseconds per day */
344 * Compute the milliseconds by the specified <code>date</code>
352 * @return the related milliseconds
382 * Compute the milliseconds by the specified <code>date</code>
395 * @return the related milliseconds
400 int64_t milliseconds; local
409 /* milliseconds = ((((year * 365 + month * 30 + day) * 2
    [all...]
  /external/webrtc/src/modules/audio_processing/aecm/
echo_control_mobile.c 282 unsigned int milliseconds; local
496 milliseconds = (unsigned int)(diff & 0xffffffff);
497 WriteFile (logFile, &milliseconds, sizeof(unsigned int), &temp, NULL);
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
CallbackProxy.java 303 public void leapForward(int milliseconds) {
304 obtainMessage(EVENT_LEAP, milliseconds, 0).sendToTarget();
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
EventSenderImpl.java 362 public void leapForward(int milliseconds) {
364 msg.arg1 = milliseconds;
  /frameworks/ex/carousel/java/com/android/ex/carousel/
CarouselController.java 627 * @param milliseconds the length of the animation
637 public void setCarouselRotationAngle(float endAngle, int milliseconds, int interpolationMode,
640 mRenderScript.setCarouselRotationAngle(endAngle, milliseconds,
746 * @param t The time, in milliseconds
759 * @param t The time, in milliseconds
  /external/sonivox/arm-fm-22k/host_src/
eas.h 716 * milliseconds - playback offset from start of file in milliseconds
728 EAS_PUBLIC EAS_RESULT EAS_Locate (EAS_DATA_HANDLE pEASData, EAS_HANDLE streamHandle, EAS_I32 milliseconds, EAS_BOOL offset);
759 * The offset in milliseconds from the start of the current sequence, quantized
    [all...]
  /external/sonivox/arm-hybrid-22k/host_src/
eas.h 716 * milliseconds - playback offset from start of file in milliseconds
728 EAS_PUBLIC EAS_RESULT EAS_Locate (EAS_DATA_HANDLE pEASData, EAS_HANDLE streamHandle, EAS_I32 milliseconds, EAS_BOOL offset);
759 * The offset in milliseconds from the start of the current sequence, quantized
    [all...]
  /external/sonivox/arm-wt-22k/host_src/
eas.h 716 * milliseconds - playback offset from start of file in milliseconds
728 EAS_PUBLIC EAS_RESULT EAS_Locate (EAS_DATA_HANDLE pEASData, EAS_HANDLE streamHandle, EAS_I32 milliseconds, EAS_BOOL offset);
759 * The offset in milliseconds from the start of the current sequence, quantized
    [all...]
  /external/v8/src/
platform-nullos.cc 103 // Returns current time as the number of milliseconds since
126 // Returns the daylight savings offset in milliseconds for the given time.
139 // Returns the local time offset in milliseconds east of UTC without
254 void OS::Sleep(int milliseconds) {
platform-cygwin.cc 188 void OS::Sleep(int milliseconds) {
189 unsigned int ms = static_cast<unsigned int>(milliseconds);
platform-macos.cc 179 void OS::Sleep(int milliseconds) {
180 usleep(1000 * milliseconds);
  /ndk/sources/cxx-stl/llvm-libc++/test/thread/futures/futures.async/
async.pass.cpp 25 typedef std::chrono::milliseconds ms;
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertAudio.java 285 play(duration); // in milliseconds
303 * @param duration the alert sound duration in milliseconds
  /external/sonivox/arm-fm-22k/lib_src/
eas_public.c     [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_public.c     [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_public.c     [all...]
  /external/webkit/Tools/DumpRenderTree/mac/
EventSendingController.mm 201 - (void)leapForward:(int)milliseconds
207 [invocation setArgument:&milliseconds atIndex:2];
214 timeOffset += milliseconds / 1000.0;
    [all...]
  /external/libmtp/src/
libmtp.h 637 uint32_t duration; /**< Duration in milliseconds */
698 uint32_t duration; /**< Duration in milliseconds if it is audio */
769 void LIBMTP_Set_Device_Timeout(LIBMTP_mtpdevice_t *device, int milliseconds);
770 void LIBMTP_Get_Device_Timeout(LIBMTP_mtpdevice_t *device, int * milliseconds);
    [all...]

Completed in 1073 milliseconds

1 2 3 4 56 7 8 9