Home | History | Annotate | Download | only in WebView

Lines Matching refs:FORWARD

1339     // It turns out the right combination of behavior is done with the back/forward load
1341 // in the back forward list, and go to the current one.
1348 return; // empty back forward list, bail
2808 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag startInSelection:(BOOL)startInSelection
2810 return [self findString:string options:((forward ? 0 : WebFindOptionsBackwards) | (caseFlag ? 0 : WebFindOptionsCaseInsensitive) | (wrapFlag ? WebFindOptionsWrapAround : 0) | (startInSelection ? WebFindOptionsStartInSelection : 0))];
3864 // Forward these calls to the document subview to make its scroll view scroll.
4033 - (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag
4035 return [self searchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag startInSelection:NO];
5465 #define FORWARD(name) \
5468 FOR_EACH_RESPONDER_SELECTOR(FORWARD)