Home
last modified time | relevance | path

Searched refs:caseSensitivity (Results 1 – 5 of 5) sorted by relevance

/external/webkit/WebCore/platform/text/
DRegularExpression.cpp50 …xp* RegularExpression::Private::compile(const String& pattern, TextCaseSensitivity caseSensitivity) in compile() argument
54caseSensitivity == TextCaseSensitive ? JSRegExpDoNotIgnoreCase : JSRegExpIgnoreCase, JSRegExpSingl… in compile()
61 …ine RegularExpression::Private::Private(const String& pattern, TextCaseSensitivity caseSensitivity) in Private() argument
63 , m_regexp(compile(pattern, caseSensitivity)) in Private()
67 …ate> RegularExpression::Private::create(const String& pattern, TextCaseSensitivity caseSensitivity) in create() argument
69 return adoptRef(new Private(pattern, caseSensitivity)); in create()
77 RegularExpression::RegularExpression(const String& pattern, TextCaseSensitivity caseSensitivity) in RegularExpression() argument
78 : d(Private::create(pattern, caseSensitivity)) in RegularExpression()
/external/webkit/WebCore/page/
DPage.cpp323 bool Page::findString(const String& target, TextCaseSensitivity caseSensitivity, FindDirection dire… in findString() argument
331 …if (frame->findString(target, direction == FindDirectionForward, caseSensitivity == TextCaseSensit… in findString()
343 … = startFrame->findString(target, direction == FindDirectionForward, caseSensitivity == TextCaseSe… in findString()
351 unsigned int Page::markAllMatchesForText(const String& target, TextCaseSensitivity caseSensitivity,… in markAllMatchesForText() argument
361 …matches += frame->markAllMatchesForText(target, caseSensitivity == TextCaseSensitive, (limit == 0)… in markAllMatchesForText()
/external/webkit/WebKit/qt/Api/
Dqwebpage.cpp2423 ::TextCaseSensitivity caseSensitivity = ::TextCaseInsensitive; in findText()
2425 caseSensitivity = ::TextCaseSensitive; in findText()
2432 return d->page->markAllMatchesForText(subString, caseSensitivity, true, 0); in findText()
2440 return d->page->findString(subString, caseSensitivity, direction, shouldWrap); in findText()
/external/webkit/WebKit/gtk/webkit/
Dwebkitwebview.cpp2770 TextCaseSensitivity caseSensitivity = caseSensitive ? TextCaseSensitive : TextCaseInsensitive; in webkit_web_view_search_text() local
2773 …return core(webView)->findString(String::fromUTF8(string), caseSensitivity, direction, shouldWrap); in webkit_web_view_search_text()
2792 TextCaseSensitivity caseSensitivity = caseSensitive ? TextCaseSensitive : TextCaseInsensitive; in webkit_web_view_mark_text_matches() local
2794 …return core(webView)->markAllMatchesForText(String::fromUTF8(string), caseSensitivity, false, limi… in webkit_web_view_mark_text_matches()
/external/webkit/WebCore/bridge/qt/
Dqt_runtime.cpp795 if (re.caseSensitivity() == Qt::CaseInsensitive) in convertQVariantToValue()