HomeSort by relevance Sort by last modified time
    Searched refs:interval (Results 1 - 25 of 274) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/webkit/WebKit/chromium/src/linux/
WebRenderTheme.cpp 42 void setCaretBlinkInterval(double interval)
44 RenderThemeChromiumLinux::setCaretBlinkInterval(interval);
  /frameworks/base/media/java/android/drm/mobile1/
DrmConstraintInfo.java 41 * The constraint of interval.
43 private long interval; field in class:DrmConstraintInfo
52 interval = -1;
89 * Get the Interval constraint.
91 * @return the interval or -1 if no limit.
94 return interval;
  /external/iproute2/tc/
tc_estimator.c 28 for (est->interval=0; est->interval<=5; est->interval++) {
29 if (A <= (1<<est->interval)*(TIME_UNITS_PER_SEC/4))
32 if (est->interval > 5)
34 est->interval -= 2;
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_timer.h 52 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
55 * elapsed. The callback function is passed the current timer interval
56 * and returns the next timer interval. If the returned value is the
82 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
89 * The callback function is passed the current timer interval and returns
90 * the next timer interval. If the returned value is the same as the one
94 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
102 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
SDL_keyboard.h 79 * 'interval' is the time in ms between keyboard repeat events.
86 extern DECLSPEC int SDLCALL SDL_EnableKeyRepeat(int delay, int interval);
87 extern DECLSPEC void SDLCALL SDL_GetKeyRepeat(int *delay, int *interval);
  /external/webkit/WebCore/platform/brew/
SharedTimerBrew.cpp 57 double interval = fireTime - currentTime(); local
60 if (interval < 0)
63 interval *= 1000;
64 intervalInMS = static_cast<int>(interval);
  /prebuilt/darwin-x86/sdl/include/SDL/
SDL_timer.h 52 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
55 * elapsed. The callback function is passed the current timer interval
56 * and returns the next timer interval. If the returned value is the
82 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
89 * The callback function is passed the current timer interval and returns
90 * the next timer interval. If the returned value is the same as the one
94 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
102 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
SDL_keyboard.h 79 * 'interval' is the time in ms between keyboard repeat events.
86 extern DECLSPEC int SDLCALL SDL_EnableKeyRepeat(int delay, int interval);
87 extern DECLSPEC void SDLCALL SDL_GetKeyRepeat(int *delay, int *interval);
  /prebuilt/linux-x86/sdl/include/SDL/
SDL_timer.h 52 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
55 * elapsed. The callback function is passed the current timer interval
56 * and returns the next timer interval. If the returned value is the
82 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
89 * The callback function is passed the current timer interval and returns
90 * the next timer interval. If the returned value is the same as the one
94 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
102 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
SDL_keyboard.h 79 * 'interval' is the time in ms between keyboard repeat events.
86 extern DECLSPEC int SDLCALL SDL_EnableKeyRepeat(int delay, int interval);
87 extern DECLSPEC void SDLCALL SDL_GetKeyRepeat(int *delay, int *interval);
  /prebuilt/windows/sdl/host/include/SDL/
SDL_timer.h 57 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
60 * elapsed. The callback function is passed the current timer interval
61 * and returns the next timer interval. If the returned value is the
85 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
92 * The callback function is passed the current timer interval and returns
93 * the next timer interval. If the returned value is the same as the one
97 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
105 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
  /prebuilt/windows/sdl/include/SDL/
SDL_timer.h 52 typedef Uint32 (SDLCALL *SDL_TimerCallback)(Uint32 interval);
55 * elapsed. The callback function is passed the current timer interval
56 * and returns the next timer interval. If the returned value is the
82 extern DECLSPEC int SDLCALL SDL_SetTimer(Uint32 interval, SDL_TimerCallback callback);
89 * The callback function is passed the current timer interval and returns
90 * the next timer interval. If the returned value is the same as the one
94 typedef Uint32 (SDLCALL *SDL_NewTimerCallback)(Uint32 interval, void *param);
102 extern DECLSPEC SDL_TimerID SDLCALL SDL_AddTimer(Uint32 interval, SDL_NewTimerCallback callback, void *param);
SDL_keyboard.h 79 * 'interval' is the time in ms between keyboard repeat events.
86 extern DECLSPEC int SDLCALL SDL_EnableKeyRepeat(int delay, int interval);
87 extern DECLSPEC void SDLCALL SDL_GetKeyRepeat(int *delay, int *interval);
  /external/easymock/src/org/easymock/internal/
Results.java 48 Range interval = ranges.get(i); local
49 if (interval.hasOpenCount()) {
53 currentPosition += interval.getMaximum();
74 for (Range interval : ranges) {
75 min += interval.getMinimum();
76 if (interval.hasOpenCount() || max == Integer.MAX_VALUE) {
79 max += interval.getMaximum();
  /external/netperf/
netcpu.h 15 extern float calibrate_idle_rate(int iterations, int interval);
netcpu_none.c 46 calibrate_idle_rate(int iterations, int interval)
  /external/webkit/WebCore/platform/gtk/
SharedTimerGtk.cpp 56 double interval = fireTime - currentTime(); local
58 if (interval < 0)
61 interval *= 1000;
62 intervalInMS = (guint)interval;
  /frameworks/base/core/java/android/app/
IAlarmManager.aidl 28 void setRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
29 void setInexactRepeating(int type, long triggerAtTime, long interval, in PendingIntent operation);
  /external/webkit/WebCore/wml/
WMLTimerElement.cpp 115 void WMLTimerElement::start(int interval)
120 if (interval <= 0 && !m_name.isEmpty()) {
122 interval = pageState->getVariable(m_name).toInt();
125 if (interval <= 0)
126 interval = value().toInt();
128 if (interval > 0)
129 m_timer.startOneShot(interval / 10.0f);
143 int interval = static_cast<int>(m_timer.nextFireInterval()) * 10; local
146 pageState->storeVariable(m_name, String::number(interval));
WMLTimerElement.h 42 void start(int interval = -1);
  /external/webkit/WebCore/platform/wx/
SharedTimerWx.cpp 75 double interval = fireTime - currentTime(); local
80 int intervalInMS = interval * 1000;
  /bionic/libc/kernel/common/linux/hdlc/
ioctl.h 53 unsigned int interval; member in struct:__anon248
  /development/ndk/platforms/android-3/include/linux/hdlc/
ioctl.h 53 unsigned int interval; member in struct:__anon897
  /external/kernel-headers/original/linux/hdlc/
ioctl.h 42 unsigned int interval; member in struct:__anon4829
  /external/webkit/WebCore/platform/qt/
SharedTimerQt.cpp 82 double interval = fireTime - currentTime(); local
84 if (interval < 0)
87 interval *= 1000;
88 intervalInMS = (unsigned int)interval;

Completed in 454 milliseconds

1 2 3 4 5 6 7 8 91011