Searched refs:caseSensitivity (Results 1 – 6 of 6) sorted by relevance
/external/webkit/Source/WebCore/platform/text/ |
D | RegularExpression.cpp | 39 static PassRefPtr<Private> create(const String& pattern, TextCaseSensitivity caseSensitivity) in create() argument 41 return adoptRef(new Private(pattern, caseSensitivity)); in create() 50 Private(const String& pattern, TextCaseSensitivity caseSensitivity) in Private() argument 52 , m_regExpByteCode(compile(pattern, caseSensitivity)) in Private() 57 …C::Yarr::BytecodePattern> compile(const String& patternString, TextCaseSensitivity caseSensitivity) in compile() argument 59 …JSC::Yarr::YarrPattern pattern(JSC::UString(patternString.impl()), (caseSensitivity == TextCaseIns… in compile() 74 RegularExpression::RegularExpression(const String& pattern, TextCaseSensitivity caseSensitivity) in RegularExpression() argument 75 : d(Private::create(pattern, caseSensitivity)) in RegularExpression()
|
/external/webkit/Source/WebKit/chromium/src/ |
D | WebRegularExpression.cpp | 45 WebTextCaseSensitivity caseSensitivity) in WebRegularExpression() argument 47 TextCaseSensitivity sensitivity = static_cast<TextCaseSensitivity>(caseSensitivity); in WebRegularExpression()
|
/external/webkit/Source/WebCore/page/ |
D | Page.cpp | 497 bool Page::findString(const String& target, TextCaseSensitivity caseSensitivity, FindDirection dire… in findString() argument 499 …return findString(target, (caseSensitivity == TextCaseInsensitive ? CaseInsensitive : 0) | (direct… in findString() 531 unsigned int Page::markAllMatchesForText(const String& target, TextCaseSensitivity caseSensitivity,… in markAllMatchesForText() argument 533 …return markAllMatchesForText(target, caseSensitivity == TextCaseInsensitive ? CaseInsensitive : 0,… in markAllMatchesForText()
|
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebpage.cpp | 3574 ::TextCaseSensitivity caseSensitivity = ::TextCaseInsensitive; in findText() 3576 caseSensitivity = ::TextCaseSensitive; in findText() 3583 return d->page->markAllMatchesForText(subString, caseSensitivity, true, 0); in findText() 3599 return d->page->findString(subString, caseSensitivity, direction, shouldWrap); in findText()
|
/external/webkit/Source/WebKit/gtk/webkit/ |
D | webkitwebview.cpp | 4057 TextCaseSensitivity caseSensitivity = caseSensitive ? TextCaseSensitive : TextCaseInsensitive; in webkit_web_view_search_text() local 4060 …return core(webView)->findString(String::fromUTF8(string), caseSensitivity, direction, shouldWrap); in webkit_web_view_search_text() 4079 TextCaseSensitivity caseSensitivity = caseSensitive ? TextCaseSensitive : TextCaseInsensitive; in webkit_web_view_mark_text_matches() local 4081 …return core(webView)->markAllMatchesForText(String::fromUTF8(string), caseSensitivity, false, limi… in webkit_web_view_mark_text_matches()
|
/external/webkit/Source/WebCore/bridge/qt/ |
D | qt_runtime.cpp | 849 … RegExpFlags flags = (re.caseSensitivity() == Qt::CaseInsensitive) ? FlagIgnoreCase : NoFlags; in convertQVariantToValue()
|