OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:startInSelection
(Results
1 - 13
of
13
) sorted by null
/external/webkit/Source/WebKit/mac/WebView/
WebDocumentPrivate.h
74
@method searchFor:direction:caseSensitive:wrap:
startInSelection
:
80
@param
startInSelection
YES to begin search in the selected text (useful for incremental searching), NO to begin search after the selected text.
83
- (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag
startInSelection
:(BOOL)
startInSelection
;
WebPDFView.mm
88
- (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag fromSelection:(PDFSelection *)initialSelection
startInSelection
:(BOOL)
startInSelection
;
599
return [self searchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag
startInSelection
:NO];
604
- (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag
startInSelection
:(BOOL)
startInSelection
606
PDFSelection *selection = [self _nextMatchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag fromSelection:[PDFSubview currentSelection]
startInSelection
:
startInSelection
];
653
PDFSelection *nextMatch = [self _nextMatchFor:string direction:YES caseSensitive:!(options & WebFindOptionsCaseInsensitive) wrap:NO fromSelection:previousMatch
startInSelection
:NO];
[
all
...]
WebViewPrivate.h
567
@method searchFor:direction:caseSensitive:wrap:
startInSelection
:
574
@param
startInSelection
YES to begin search in the selected text (useful for incremental searching), NO to begin search after the selected text.
578
- (BOOL)searchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag
startInSelection
:(BOOL)
startInSelection
;
WebView.mm
[
all
...]
WebHTMLView.mm
568
| (options & WebFindOptionsStartInSelection ?
StartInSelection
: 0);
[
all
...]
/external/webkit/Source/WebKit2/UIProcess/API/mac/
PDFViewController.mm
117
- (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag fromSelection:(PDFSelection *)initialSelection
startInSelection
:(BOOL)
startInSelection
;
213
- (PDFSelection *)_nextMatchFor:(NSString *)string direction:(BOOL)forward caseSensitive:(BOOL)caseFlag wrap:(BOOL)wrapFlag fromSelection:(PDFSelection *)initialSelection
startInSelection
:(BOOL)
startInSelection
228
if (
startInSelection
) {
245
if (
startInSelection
&& _PDFSelectionsAreEqual(foundSelection, initialSelection))
611
PDFSelection *selection = [m_wkPDFView.get() _nextMatchFor:string direction:forward caseSensitive:caseFlag wrap:wrapFlag fromSelection:[m_pdfView currentSelection]
startInSelection
:NO];
/external/webkit/Source/WebKit/wx/
WebFrame.h
154
bool
startInSelection
= true);
WebFrame.cpp
272
bool wxWebFrame::FindString(const wxString& string, bool forward, bool caseSensitive, bool wrapSelection, bool
startInSelection
)
275
return m_impl->frame->editor()->findString(string, forward, caseSensitive, wrapSelection,
startInSelection
);
WebView.cpp
694
bool wxWebView::FindString(const wxString& string, bool forward, bool caseSensitive, bool wrapSelection, bool
startInSelection
)
697
return m_mainFrame->FindString(string, forward, caseSensitive, wrapSelection,
startInSelection
);
WebView.h
179
bool
startInSelection
= true);
/external/webkit/Source/WebCore/editing/
Editor.h
347
bool findString(const String&, bool forward, bool caseFlag, bool wrapFlag, bool
startInSelection
);
Editor.cpp
[
all
...]
/external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp
[
all
...]
Completed in 2690 milliseconds