/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | ContentSearchUtils.cpp | 60 static Vector<pair<int, String> > getScriptRegexpMatchesByLines(const ScriptRegexp* regex, const St… in getScriptRegexpMatchesByLines() 92 PassOwnPtr<ScriptRegexp> createSearchRegex(const String& query, bool caseSensitive, bool isRegex) in createSearchRegex() 95 …return adoptPtr(new ScriptRegexp(regexSource, caseSensitive ? TextCaseSensitive : TextCaseInsensit… in createSearchRegex() 98 int countScriptRegexpMatches(const ScriptRegexp* regex, const String& content) in countScriptRegexpMatches() 121 … OwnPtr<ScriptRegexp> regex = ContentSearchUtils::createSearchRegex(query, caseSensitive, isRegex); in searchInTextByLines() 150 ScriptRegexp regex(pattern, TextCaseSensitive, MultilineEnabled); in findMagicComment() 151 ScriptRegexp deprecatedRegex(deprecatedPattern, TextCaseSensitive, MultilineEnabled); in findMagicComment()
|
D | ContentSearchUtils.h | 40 class ScriptRegexp; variable 49 PassOwnPtr<ScriptRegexp> createSearchRegex(const String& query, bool caseSensitive, bool isRegex); 50 int countScriptRegexpMatches(const ScriptRegexp*, const String&);
|
D | InspectorDebuggerAgent.h | 60 class ScriptRegexp; variable 227 OwnPtr<ScriptRegexp> m_cachedSkipStackRegExp;
|
D | InspectorDebuggerAgent.cpp | 177 static PassOwnPtr<ScriptRegexp> compileSkipCallFramePattern(String patternText) in compileSkipCallFramePattern() 181 OwnPtr<ScriptRegexp> result = adoptPtr(new ScriptRegexp(patternText, TextCaseSensitive)); in compileSkipCallFramePattern() 297 ScriptRegexp regex(pattern, TextCaseSensitive); in matches() 922 OwnPtr<ScriptRegexp> compiled; in skipStackFrames()
|
D | InspectorStyleSheet.cpp | 1219 ScriptRegexp comment("/\\*[^]*?\\*/", TextCaseSensitive, MultilineEnabled); in selectorsFromSource()
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | ScriptRegexp.h | 42 class ScriptRegexp { 43 WTF_MAKE_FAST_ALLOCATED; WTF_MAKE_NONCOPYABLE(ScriptRegexp); 45 ScriptRegexp(const String&, TextCaseSensitivity, MultilineMode = MultilineDisabled);
|
D | ScriptRegexp.cpp | 38 ScriptRegexp::ScriptRegexp(const String& pattern, TextCaseSensitivity caseSensitivity, MultilineMod… in ScriptRegexp() function in WebCore::ScriptRegexp 59 int ScriptRegexp::match(const String& string, int startFrom, int* matchLength) const in match()
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
D | BaseTextInputType.cpp | 44 …if (rawPattern.isNull() || value.isEmpty() || !ScriptRegexp(rawPattern, TextCaseSensitive).isValid… in patternMismatch() 49 int matchOffset = ScriptRegexp(pattern, TextCaseSensitive).match(value, 0, &matchLength); in patternMismatch()
|
D | EmailInputType.cpp | 128 DEFINE_STATIC_LOCAL(const ScriptRegexp, regExp, (emailPattern, TextCaseInsensitive)); in isValidEmailAddress()
|
/external/chromium_org/third_party/WebKit/Source/bindings/ |
D | bindings.gypi | 68 'v8/ScriptRegexp.cpp', 69 'v8/ScriptRegexp.h',
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_derived.target.darwin-arm.mk | 226 third_party/WebKit/Source/bindings/v8/ScriptRegexp.cpp \
|
D | webcore_derived.target.darwin-x86.mk | 226 third_party/WebKit/Source/bindings/v8/ScriptRegexp.cpp \
|
D | webcore_derived.target.linux-x86.mk | 226 third_party/WebKit/Source/bindings/v8/ScriptRegexp.cpp \
|
D | webcore_derived.target.linux-arm.mk | 226 third_party/WebKit/Source/bindings/v8/ScriptRegexp.cpp \
|
D | webcore_derived.target.linux-mips.mk | 226 third_party/WebKit/Source/bindings/v8/ScriptRegexp.cpp \
|
D | webcore_derived.target.darwin-mips.mk | 226 third_party/WebKit/Source/bindings/v8/ScriptRegexp.cpp \
|