HomeSort by relevance Sort by last modified time
    Searched full:findoptions (Results 1 - 25 of 44) sorted by null

1 2

  /external/webkit/Source/WebCore/editing/
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);
FindOptions.h 42 typedef unsigned FindOptions;
TextIterator.h 29 #include "FindOptions.h"
66 PassRefPtr<Range> findPlainText(const Range*, const String&, FindOptions);
  /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/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.messages.in 116 FindString(WTF::String string, uint32_t findOptions, unsigned maxMatchCount)
118 CountStringMatches(WTF::String string, uint32_t findOptions, 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);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
AssertMatchingEnums.cpp 26 #include "FindOptions.h"
  /external/webkit/Source/WebKit2/Shared/
WebFindOptions.h 31 enum FindOptions {
  /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.
  /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/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...]
  /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;
  /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/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePage.cpp 230 bool WKBundlePageFindString(WKBundlePageRef pageRef, WKStringRef target, WKFindOptions findOptions)
232 return toImpl(pageRef)->findStringFromInjectedBundle(toImpl(target)->string(), toFindOptions(findOptions));
WKBundlePage.h 294 WK_EXPORT bool WKBundlePageFindString(WKBundlePageRef page, WKStringRef target, WKFindOptions findOptions);
  /external/webkit/Tools/DumpRenderTree/gtk/
LayoutTestControllerGtk.cpp 569 WebKitFindOptions findOptions = 0;
589 findOptions |= WebKit::WebFindOptionsCaseInsensitive;
591 findOptions |= WebKit::WebFindOptionsAtWordStarts;
593 findOptions |= WebKit::WebFindOptionsTreatMedialCapitalAsWordStart;
595 findOptions |= WebKit::WebFindOptionsBackwards;
597 findOptions |= WebKit::WebFindOptionsWrapAround;
599 findOptions |= WebKit::WebFindOptionsStartInSelection;
602 return DumpRenderTreeSupportGtk::findString(webView, targetString.get(), findOptions);
    [all...]
  /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);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.h 346 WK_EXPORT void WKPageFindString(WKPageRef page, WKStringRef string, WKFindOptions findOptions, unsigned maxMatchCount);
348 WK_EXPORT void WKPageCountStringMatches(WKPageRef page, WKStringRef string, WKFindOptions findOptions, unsigned maxMatchCount);

Completed in 1759 milliseconds

1 2