Home
last modified time | relevance | path

Searched refs:shouldWrap (Results 1 – 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/page/
DPage.cpp497 …onst String& target, TextCaseSensitivity caseSensitivity, FindDirection direction, bool shouldWrap) in findString() argument
499 …nsitive : 0) | (direction == FindDirectionBackward ? Backwards : 0) | (shouldWrap ? WrapAround : 0… in findString()
507 bool shouldWrap = options & WrapAround; in findString() local
517 frame = incrementFrame(frame, !(options & Backwards), shouldWrap); in findString()
522 if (shouldWrap && !startFrame->selection()->isNone()) { in findString()
DPage.h211 bool findString(const String&, TextCaseSensitivity, FindDirection, bool shouldWrap);
/external/webkit/Source/WebKit/qt/Api/
Dqwebpage.cpp3597 const bool shouldWrap = options & FindWrapsAroundDocument; in findText() local
3599 return d->page->findString(subString, caseSensitivity, direction, shouldWrap); in findText()
/external/webkit/Source/WebKit/gtk/webkit/
Dwebkitwebview.cpp4052 …bView* webView, const gchar* string, gboolean caseSensitive, gboolean forward, gboolean shouldWrap) in webkit_web_view_search_text() argument
4060 …return core(webView)->findString(String::fromUTF8(string), caseSensitivity, direction, shouldWrap); in webkit_web_view_search_text()