Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dv8-regex.h19 class V8Regex {
21 V8Regex(V8InspectorImpl*, const String16&, bool caseSensitive,
32 DISALLOW_COPY_AND_ASSIGN(V8Regex);
Dsearch-util.cc101 const V8Regex& regex, const String16& text) { in scriptRegexpMatchesByLines()
131 std::unique_ptr<V8Regex> createSearchRegex(V8InspectorImpl* inspector, in createSearchRegex()
135 return std::unique_ptr<V8Regex>( in createSearchRegex()
136 new V8Regex(inspector, regexSource, caseSensitive)); in createSearchRegex()
145 std::unique_ptr<V8Regex> regex = createSearchRegex( in searchInTextByLinesImpl()
Dv8-regex.cc16 V8Regex::V8Regex(V8InspectorImpl* inspector, const String16& pattern, in V8Regex() function in v8_inspector::V8Regex
40 int V8Regex::match(const String16& string, int startFrom, in match()
Dv8-debugger-agent-impl.h25 class V8Regex; variable
210 std::unique_ptr<V8Regex> m_blackboxPattern;
Dv8-debugger-agent-impl.cc256 V8Regex regex(inspector, pattern, true); in matches()
792 std::unique_ptr<V8Regex> regex(new V8Regex( in setBlackboxPattern()