/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_EnableKeyRepeat.3 | 11 Enables or disables the keyboard repeat rate\&. \fBdelay\fR specifies how long the key must be pressed before it begins repeating, it then repeats at the speed specified by \fBinterval\fR\&. Both \fBdelay\fR and \fBinterval\fR are expressed in milliseconds\&.
|
SDL_AddTimer.3 | 3 SDL_AddTimer \- Add a timer which will call a callback after the specified number of milliseconds has elapsed\&. 18 Adds a callback function to be run after the specified number of milliseconds has elapsed\&. The callback function is passed the current timer interval and the user supplied parameter from the \fBSDL_AddTimer\fP call and returns the next timer interval\&. If the returned value from the callback is the same as the one passed in, the periodic alarm continues, otherwise a new alarm is scheduled\&.
|
SDL_SetTimer.3 | 3 SDL_SetTimer \- Set a callback to run after the specified number of milliseconds has elapsed\&. 14 Set a callback to run after the specified number of milliseconds has elapsed\&. The callback function is passed the current timer interval and returns the next timer interval\&. If the returned value is the same as the one passed in, the periodic alarm continues, otherwise a new alarm is scheduled\&.
|
/external/skia/src/ports/ |
SkTime_Unix.cpp | 38 return (SkMSec) (tv.tv_sec * 1000 + tv.tv_usec / 1000 ); // microseconds to milliseconds
|
SkTime_win.cpp | 37 return (SkMSec)(t / 10000); /* In milliseconds */
|
/external/webrtc/src/system_wrappers/interface/ |
sleep.h | 17 // This function sleeps for the specified number of milliseconds.
|
/frameworks/base/core/java/android/os/ |
IVibratorService.aidl | 23 void vibrate(int uid, String packageName, long milliseconds, IBinder token);
|
/frameworks/base/location/lib/java/com/android/location/provider/ |
LocationRequestUnbundled.java | 85 * Get the desired interval of this request, in milliseconds. 87 * @return desired interval in milliseconds, inexact 94 * Get the fastest interval of this request, in milliseconds. 100 * @return fastest interval in milliseconds, exact
|
/packages/apps/Camera/res/values/ |
config.xml | 20 <!-- Maximum recording length in milliseconds. 0 means unlimited. -->
|
/packages/apps/Camera2/res/values/ |
config.xml | 20 <!-- Maximum recording length in milliseconds. 0 means unlimited. -->
|
/packages/apps/Gallery2/res/values/ |
config.xml | 20 <!-- Maximum recording length in milliseconds. 0 means unlimited. -->
|
/packages/apps/VideoEditor/src/com/android/videoeditor/service/ |
MovieEffect.java | 82 * @param durationMs of the effect in milliseconds
91 * @return The duration of the effect in milliseconds
102 * of the media item in milliseconds
109 * @return The start time in milliseconds
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/netfilter/ |
xt_hashlimit.h | 4 /* timings are in milliseconds. */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
xt_hashlimit.h | 4 /* timings are in milliseconds. */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/ |
xt_hashlimit.h | 4 /* timings are in milliseconds. */
|
/external/chromium/base/ |
time_posix.cc | 80 int64 milliseconds = (us_ - kWindowsEpochDeltaMicroseconds) / local 82 time_t seconds = milliseconds / kMillisecondsPerSecond; 97 exploded->millisecond = milliseconds % kMillisecondsPerSecond; 123 int64 milliseconds; local 145 milliseconds = std::numeric_limits<time_t>::min() * 148 milliseconds = (std::numeric_limits<time_t>::max() * 153 milliseconds = seconds * kMillisecondsPerSecond + exploded.millisecond; 157 return Time((milliseconds * kMicrosecondsPerMillisecond) +
|
/external/chromium_org/chrome/common/extensions/api/ |
experimental_history.json | 28 "filterTime": {"type": "number", "optional": true, "description": "Sets the time to be used as a basis for the query, represented in milliseconds since the epoch. Defaults to the current time."}, 29 "filterWidth": {"type": "number", "optional": true, "description": "Limit results to those visited at filterTime +/- this on each day, in milliseconds."},
|
/external/chromium_org/chrome/test/webdriver/commands/ |
set_timeout_commands.cc | 29 // Timeout value in milliseconds 41 // Note webdriver only supports whole milliseconds for a timeout value, so
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
ContentVideoViewControls.java | 31 * automatically after 'timeout' milliseconds of inactivity. 32 * @param timeout_ms The timeout in milliseconds. Use 0 to show
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMTimeStamp.h | 43 inline double convertDOMTimeStampToSeconds(DOMTimeStamp milliseconds) 45 return milliseconds / 1000.0;
|
/external/chromium_org/ui/app_list/ |
app_list_constants.cc | 30 // Duration in milliseconds for page transition. 33 // Duration in milliseconds for over scroll page transition.
|
/external/chromium_org/v8/test/webkit/fast/js/ |
date-preserve-milliseconds-expected.txt | 24 The following test checks if an existing milliseconds value gets preserved if a call to setHours(), setMinutes() or setSeconds() does not specify the milliseconds. See https://bugs.webkit.org/show_bug.cgi?id=3759
|
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
Platform.java | 45 // System.nanoTime() is not available in GWT, so we get milliseconds 47 return TimeUnit.MILLISECONDS.toNanos(System.currentTimeMillis());
|
/frameworks/base/core/java/android/animation/ |
TimeAnimator.java | 67 * @param totalTime The total time elapsed since the animator started, in milliseconds. 68 * @param deltaTime The time elapsed since the previous frame, in milliseconds.
|
/frameworks/base/services/common_time/ |
utils.h | 33 // Set a timeout which should occur msec milliseconds from now. 37 // Return the number of milliseconds until the timeout occurs, or -1 if
|