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

1 2

  /external/webkit/Source/WebCore/editing/
FindOptions.h 42 typedef unsigned FindOptions;
Editor.h 36 #include "FindOptions.h"
345 bool findString(const String&, FindOptions);
346 // FIXME: Switch callers over to the FindOptions version and retire this one.
363 unsigned countMatchesForText(const String&, FindOptions, unsigned limit, bool markMatches);
364 unsigned countMatchesForText(const String&, Range*, FindOptions, unsigned limit, bool markMatches);
423 PassRefPtr<Range> firstVisibleRange(const String&, FindOptions);
424 PassRefPtr<Range> lastVisibleRange(const String&, FindOptions);
425 PassRefPtr<Range> nextVisibleRange(Range*, const String&, FindOptions);
TextIterator.h 29 #include "FindOptions.h"
63 PassRefPtr<Range> findPlainText(const Range*, const String&, FindOptions);
TextIterator.cpp 68 SearchBuffer(const String& target, FindOptions);
89 FindOptions m_options;
108 FindOptions m_options;
    [all...]
Editor.cpp     [all...]
  /external/webkit/Source/WebKit2/Shared/
WebFindOptions.h 31 enum FindOptions {
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
FindController.h 51 void findString(const String&, FindOptions, unsigned maxMatchCount);
53 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
FindController.cpp 46 static WebCore::FindOptions core(FindOptions options)
66 void FindController::countStringMatches(const String& string, FindOptions options, unsigned maxMatchCount)
91 void FindController::findString(const String& string, FindOptions options, unsigned maxMatchCount)
WebPage.h 214 bool findStringFromInjectedBundle(const String&, FindOptions);
516 void findString(const String&, uint32_t findOptions, uint32_t maxMatchCount);
518 void countStringMatches(const String&, uint32_t findOptions, uint32_t maxMatchCount);
WebPage.cpp     [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
PDFViewController.h 70 void findString(const String&, FindOptions, unsigned maxMatchCount);
71 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
WKViewInternal.h 73 - (void)_findStringInCustomRepresentation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)count;
74 - (void)_countStringMatchesInCustomRepresentation:(NSString *)string withFindOptions:(WebKit::FindOptions)options maxMatchCount:(NSUInteger)count;
PageClientImpl.h 105 virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
106 virtual void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
PageClientImpl.mm 363 void PageClientImpl::findStringInCustomRepresentation(const String& string, FindOptions options, unsigned maxMatchCount)
368 void PageClientImpl::countStringMatchesInCustomRepresentation(const String& string, FindOptions options, unsigned maxMatchCount)
PDFViewController.mm 605 void PDFViewController::findString(const String& string, FindOptions options, unsigned maxMatchCount)
626 void PDFViewController::countStringMatches(const String& string, FindOptions options, unsigned maxMatchCount)
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkpage_p.h 97 virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) { }
98 virtual void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) { }
  /external/webkit/Source/WebKit2/UIProcess/
PageClient.h 155 virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) = 0;
156 virtual void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount) = 0;
WebPageProxy.h 360 void findString(const String&, FindOptions, unsigned maxMatchCount);
362 void countStringMatches(const String&, FindOptions, unsigned maxMatchCount);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/gtk/
WebView.h 111 virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned);
112 virtual void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned);
WebView.cpp 557 void WebView::findStringInCustomRepresentation(const String&, FindOptions, unsigned)
562 void WebView::countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned)
  /external/webkit/Source/WebCore/page/
Page.h 25 #include "FindOptions.h"
209 bool findString(const String&, FindOptions);
210 // FIXME: Switch callers over to the FindOptions version and retire this one.
212 unsigned markAllMatchesForText(const String&, FindOptions, bool shouldHighlight, unsigned);
213 // FIXME: Switch callers over to the FindOptions version and retire this one.
Page.cpp 502 bool Page::findString(const String& target, FindOptions options)
536 unsigned int Page::markAllMatchesForText(const String& target, FindOptions options, bool shouldHighlight, unsigned limit)
  /external/webkit/Source/WebKit2/UIProcess/win/
WebView.h 188 virtual void findStringInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
189 virtual void countStringMatchesInCustomRepresentation(const String&, FindOptions, unsigned maxMatchCount);
WebView.cpp     [all...]
  /external/webkit/Source/WebKit2/Shared/API/c/
WKSharedAPICast.h 665 inline FindOptions toFindOptions(WKFindOptions wkFindOptions)
667 unsigned findOptions = 0;
670 findOptions |= FindOptionsCaseInsensitive;
672 findOptions |= FindOptionsAtWordStarts;
674 findOptions |= FindOptionsTreatMedialCapitalAsWordStart;
676 findOptions |= FindOptionsBackwards;
678 findOptions |= FindOptionsWrapAround;
680 findOptions |= FindOptionsShowOverlay;
682 findOptions |= FindOptionsShowFindIndicator;
684 return static_cast<FindOptions>(findOptions)
    [all...]

Completed in 278 milliseconds

1 2