Searched refs:repeats (Results 1 - 22 of 22) sorted by relevance

/macosx-10.9.5/Chess-310.5/sjeng/
H A Ddraw.c48 int i, repeats = 0, end, start; local
91 repeats++;
93 if (repeats >= 2)
/macosx-10.9.5/text_cmds-87/uniq/
H A Duniq.c65 int numchars, numfields, repeats; variable
176 repeats = 0;
178 ++repeats;
214 (void)fprintf(ofp, "%4d %ls\n", repeats + 1, str);
215 if ((dflag && repeats) || (uflag && !repeats))
/macosx-10.9.5/BerkeleyDB-21/db/test/
H A Drep041.tcl155 set repeats 2
156 for { set i 0 } { $i < $repeats } { incr i } {
/macosx-10.9.5/RubyCocoa-80/RubyCocoa/framework/src/objc/
H A DRBThreadSwitcher.m75 repeats: YES];
/macosx-10.9.5/bind9-45.100/bind9/lib/isc/tests/
H A Dhash_test.c81 int repeats; member in struct:hash_testcase
206 for(i = 0; i < testcase->repeats; i++) {
333 for(i = 0; i < testcase->repeats; i++) {
465 for(i = 0; i < testcase->repeats; i++) {
611 for(i = 0; i < testcase->repeats; i++) {
758 for(i = 0; i < testcase->repeats; i++) {
837 for(i = 0; i < testcase->repeats; i++) {
/macosx-10.9.5/CF-855.17/
H A DCFRunLoop.h158 CF_EXPORT CFRunLoopObserverRef CFRunLoopObserverCreate(CFAllocatorRef allocator, CFOptionFlags activities, Boolean repeats, CFIndex order, CFRunLoopObserverCallBack callout, CFRunLoopObserverContext *context);
160 CF_EXPORT CFRunLoopObserverRef CFRunLoopObserverCreateWithHandler(CFAllocatorRef allocator, CFOptionFlags activities, Boolean repeats, CFIndex order, void (^block) (CFRunLoopObserverRef observer, CFRunLoopActivity activity)) CF_AVAILABLE(10_7, 5_0);
H A DCFRunLoop.c993 /* Bit 1 of the base reserved bits is used for repeats state */
3415 result = CFStringCreateWithFormat(kCFAllocatorSystemDefault, NULL, CFSTR("<CFRunLoopObserver %p [%p]>{valid = %s, activities = 0x%x, repeats = %s, order = %d, callout = %p, context = %@}"), cf, CFGetAllocator(rlo), __CFIsValid(rlo) ? "Yes" : "No", rlo->_activities, __CFRunLoopObserverRepeats(rlo) ? "Yes" : "No", rlo->_order, rlo->_callout, contextDesc);
3420 result = CFStringCreateWithFormat(kCFAllocatorSystemDefault, NULL, CFSTR("<CFRunLoopObserver %p [%p]>{valid = %s, activities = 0x%lx, repeats = %s, order = %ld, callout = %s (%p), context = %@}"), cf, CFGetAllocator(rlo), __CFIsValid(rlo) ? "Yes" : "No", (long)rlo->_activities, __CFRunLoopObserverRepeats(rlo) ? "Yes" : "No", (long)rlo->_order, name, addr, contextDesc);
3452 CFRunLoopObserverRef CFRunLoopObserverCreate(CFAllocatorRef allocator, CFOptionFlags activities, Boolean repeats, CFIndex order, CFRunLoopObserverCallBack callout, CFRunLoopObserverContext *context) { argument
3463 if (repeats) {
3498 CFRunLoopObserverRef CFRunLoopObserverCreateWithHandler(CFAllocatorRef allocator, CFOptionFlags activities, Boolean repeats, CFIndex order, argument
3506 return CFRunLoopObserverCreate(allocator, activities, repeats, order, _runLoopObserverWithBlockContext, &blockContext);
/macosx-10.9.5/emacs-92/emacs/lisp/emacs-lisp/
H A Dtimer.el304 (defvar timer-max-repeats 10
305 "*Maximum number of times to repeat a timer, if many repeats are delayed.
338 (if (and (numberp timer-max-repeats)
340 (let ((repeats (/ (timer-until timer (current-time))
342 (if (> repeats timer-max-repeats)
343 (timer-inc-time timer (* (aref timer 4) repeats)))))
/macosx-10.9.5/WebCore-7537.78.1/svg/animation/
H A DSVGSMILElement.h157 Condition(Type, BeginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats = -1);
H A DSVGSMILElement.cpp106 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats) argument
112 , m_repeats(repeats)
394 int repeats = -1; local
398 repeats = nameString.substring(7, nameString.length() - 8).toUIntStrict(&ok);
413 m_conditions.append(Condition(type, beginOrEnd, baseID, nameString, offset, repeats));
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/Stash/
H A DContext.pm42 # eg: ARRAY.repeat(3) repeats each element in place.
726 eg: ARRAY.repeat(3) repeats each element in place.
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/Stash/
H A DContext.pm42 # eg: ARRAY.repeat(3) repeats each element in place.
726 eg: ARRAY.repeat(3) repeats each element in place.
/macosx-10.9.5/emacs-92/emacs/etc/
H A Dsurvival.tex308 \key{*} zero or more repeats
309 \key{+} one or more repeats
H A Drefcard.tex545 \key{zero or more repeats}{*}
546 \key{one or more repeats}{+}
H A Dpl-refcard.tex764 %\key{zero or more repeats}{*}
765 %\key{one or more repeats}{+}
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebVideoFullscreenHUDWindowController.mm233 _timelineUpdateTimer = [[NSTimer timerWithTimeInterval:0.25 target:self selector:@selector(updateTime) userInfo:nil repeats:YES] retain];
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/mac/
H A DWKPrintingView.mm118 _autodisplayResumeTimer = [NSTimer timerWithTimeInterval:0 target:self selector:@selector(_delayedResumeAutodisplayTimerFired) userInfo:nil repeats:NO];
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/mac/
H A DWKFullScreenWindowController.mm154 _watchdogTimer = adoptNS([[NSTimer alloc] initWithFireDate:nil interval:DefaultWatchdogTimerInterval target:self selector:@selector(exitFullScreen) userInfo:nil repeats:NO]);
/macosx-10.9.5/security_ocspd-55118.2/server/
H A DocspdNetwork.mm168 userInfo:nil repeats:YES];
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dvim.vim282 " Complex repeats (:h complex-repeat) {{{2
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebHTMLView.mm1731 target:self selector:@selector(_autoscroll) userInfo:nil repeats:YES] retain];
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/
H A Dtommath.tex539 implement these base functions I prototype more dependent functions and implement them. The process repeats until

Completed in 265 milliseconds