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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/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/linux-tools-perf/scripts/python/bin/
sctop-report 3 # args: [comm] [interval]
13 echo "usage: sctop-report [comm] [interval]"
18 interval=$2
21 interval=$1
24 perf script $@ -s "$PERF_EXEC_PATH"/scripts/python/sctop.py $comm $interval
  /external/webkit/Source/WebCore/platform/mac/
EventLoopMac.mm 35 NSTimeInterval interval = [[NSDate date] timeIntervalSinceReferenceDate];
36 interval += 0.05;
37 NSDate *untilDate = [NSDate dateWithTimeIntervalSinceReferenceDate:interval];
  /external/webkit/Source/WebKit2/Platform/CoreIPC/win/
BinarySemaphoreWin.cpp 48 DWORD interval = absoluteTimeToWaitTimeoutInterval(absoluteTime); local
49 if (!interval) {
55 DWORD result = ::WaitForSingleObjectEx(m_event, interval, FALSE);
  /external/linux-tools-perf/scripts/perl/bin/
rwtop-report 3 # args: [interval]
13 echo "usage: rwtop-report [interval]"
17 interval=$1
20 perf script $@ -s "$PERF_EXEC_PATH"/scripts/perl/rwtop.pl $interval
  /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);
  /external/webkit/Source/WebCore/platform/brew/
SharedTimerBrew.cpp 57 double interval = fireTime - currentTime(); local
60 if (interval < 0)
63 interval *= 1000;
64 intervalInMS = static_cast<int>(interval);
  /prebuilts/tools/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);
  /prebuilts/tools/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);
  /prebuilts/tools/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);
  /prebuilts/tools/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);
  /external/chromium/third_party/libjingle/source/talk/session/phone/
videocommon.h 109 VideoFormat() : width(0), height(0), interval(0), fourcc(0) {}
114 interval(interval_ns),
121 interval(format.interval),
129 static int IntervalToFps(int64 interval) {
130 // Normalize the interval first.
131 interval = talk_base::_max(interval, kMinimumInterval);
132 return static_cast<int>(kNumNanosecsPerSec / interval);
137 interval == format.interval && fourcc == format.fourcc
157 int64 interval; \/\/ in nanoseconds member in struct:cricket::VideoFormat
    [all...]
  /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/linux-tools-perf/scripts/python/
sctop.py 7 # [comm] are displayed. If an [interval] arg is specified, the display
8 # will be refreshed every [interval] seconds. The default interval is
20 usage = "perf script -s sctop.py [comm] [interval]\n";
24 interval = default_interval variable
31 interval = int(sys.argv[2]) variable
34 interval = int(sys.argv[1]) variable
37 interval = default_interval variable
42 thread.start_new_thread(print_syscall_totals, (interval,))
56 def print_syscall_totals(interval)
    [all...]
  /external/iptables/include/linux/netfilter/
xt_RATEEST.h 8 __s8 interval; member in struct:xt_rateest_target_info
  /external/netperf/
netcpu.h 15 extern float calibrate_idle_rate(int iterations, int interval);
  /external/webkit/Source/WebCore/platform/gtk/
SharedTimerGtk.cpp 57 double interval = fireTime - currentTime(); local
59 if (interval < 0)
62 interval *= 1000;
63 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/Source/WebCore/platform/graphics/win/
QTMovieTask.cpp 66 double interval = intervalInMS / 1000.0; local
67 if (interval < minInterval)
68 interval = minInterval;
69 if (interval > maxInterval)
70 interval = maxInterval;
71 m_setTaskTimerDelay(interval);
  /external/webkit/Source/WebCore/wml/
WMLTimerElement.cpp 120 void WMLTimerElement::start(int interval)
125 if (interval <= 0 && !m_name.isEmpty()) {
127 interval = pageState->getVariable(m_name).toInt();
130 if (interval <= 0)
131 interval = value().toInt();
133 if (interval > 0)
134 m_timer.startOneShot(interval / 10.0f);
148 int interval = static_cast<int>(m_timer.nextFireInterval()) * 10; local
151 pageState->storeVariable(m_name, String::number(interval));
  /external/valgrind/main/drd/tests/
hold_lock.c 26 int interval = 0; local
37 interval = atoi(optarg);
40 fprintf(stderr, "Usage: %s [-i <interval time in ms>].\n", argv[0]);
52 delay_ms(interval);
62 delay_ms(interval);
70 delay_ms(interval);
  /external/webkit/Source/WebCore/platform/graphics/gpu/
PODIntervalTree.h 43 // An interval tree, which is a form of augmented red-black tree. It
67 // interval. The returned intervals are sorted by increasing low
69 Vector<IntervalType> allOverlaps(const IntervalType& interval) const
72 allOverlaps(interval, result);
77 // interval. The returned intervals are sorted by increasing low
79 void allOverlaps(const IntervalType& interval, Vector<IntervalType>& result) const
83 searchForOverlapsFrom(this->root(), interval, result);
86 // Helper to create interval objects.
113 // interval to the result vector. The intervals are sorted by
115 void searchForOverlapsFrom(IntervalNode* node, const IntervalType& interval, Vector<IntervalType>& res) cons
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/thread/
messagepump.py 31 def schedule(self, interval, callback):
42 interval = 10 # seconds variable in class:MessagePump
50 self._delegate.schedule(self.interval, self._callback)

Completed in 801 milliseconds

1 2 3 4 5 6 7 8 91011>>