OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:repeatInterval
(Results
1 - 14
of
14
) sorted by null
/external/webkit/Source/WebCore/platform/
RunLoopTimer.h
48
void start(double nextFireInterval, double
repeatInterval
);
50
void startRepeating(double
repeatInterval
) { start(
repeatInterval
,
repeatInterval
); }
Timer.h
44
void start(double nextFireInterval, double
repeatInterval
);
46
void startRepeating(double
repeatInterval
) { start(
repeatInterval
,
repeatInterval
); }
53
double
repeatInterval
() const { return m_repeatInterval; }
ThreadTimers.cpp
108
double interval = timer->
repeatInterval
();
Timer.cpp
179
void TimerBase::start(double nextFireInterval, double
repeatInterval
)
183
m_repeatInterval =
repeatInterval
;
/external/webkit/Source/WebCore/page/
DOMTimer.cpp
128
if (
repeatInterval
() &&
repeatInterval
() < minimumInterval) {
131
augmentRepeatInterval(minimumInterval -
repeatInterval
());
178
if (
repeatInterval
()) {
179
augmentRepeatInterval(newClampedInterval -
repeatInterval
());
SuspendableTimer.cpp
68
m_repeatInterval =
repeatInterval
();
/external/webkit/Source/WebCore/platform/cf/
RunLoopTimerCF.cpp
48
void RunLoopTimerBase::start(double nextFireInterval, double
repeatInterval
)
53
m_timer.adoptCF(CFRunLoopTimerCreate(0, CFAbsoluteTimeGetCurrent() + nextFireInterval,
repeatInterval
, 0, 0, timerFired, &context));
/external/webkit/Source/WebKit2/Platform/
RunLoop.h
77
void startRepeating(double
repeatInterval
) { start(
repeatInterval
, true); }
/external/webkit/Source/WebKit2/Platform/mac/
RunLoopMac.mm
129
CFTimeInterval
repeatInterval
= repeat ? nextFireInterval : 0;
130
m_timer = CFRunLoopTimerCreate(kCFAllocatorDefault, CFAbsoluteTimeGetCurrent() + nextFireInterval,
repeatInterval
, 0, 0, timerFired, &context);
/frameworks/base/services/java/com/android/server/
AlarmManagerService.java
224
alarm.
repeatInterval
= interval;
697
if (alarm.
repeatInterval
> 0) {
700
alarm.count += (now - alarm.when) / alarm.
repeatInterval
;
708
if (alarm.
repeatInterval
> 0) {
717
alarm.when += alarm.count * alarm.
repeatInterval
;
747
public long
repeatInterval
;
752
repeatInterval
= 0;
773
pw.print("
repeatInterval
="); pw.print(
repeatInterval
);
[
all
...]
/external/webkit/Source/WebCore/page/animation/
AnimationController.cpp
117
if (!m_animationTimer.isActive() || m_animationTimer.
repeatInterval
() == 0)
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XKBproto.h
174
CARD16
repeatInterval
B16;
215
CARD16
repeatInterval
B16;
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XKBproto.h
174
CARD16
repeatInterval
B16;
215
CARD16
repeatInterval
B16;
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XKBproto.h
174
CARD16
repeatInterval
B16;
215
CARD16
repeatInterval
B16;
Completed in 295 milliseconds