Searched refs:V8Regex (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/inspector/ |
D | v8-regex.h | 19 class V8Regex { 21 V8Regex(V8InspectorImpl*, const String16&, bool caseSensitive, 32 DISALLOW_COPY_AND_ASSIGN(V8Regex);
|
D | search-util.cc | 101 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()
|
D | v8-regex.cc | 16 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()
|
D | v8-debugger-agent-impl.h | 25 class V8Regex; variable 219 std::unique_ptr<V8Regex> m_blackboxPattern;
|
D | v8-debugger-agent-impl.cc | 443 V8Regex regex(inspector, selector, true); in matches() 1193 std::unique_ptr<V8Regex> regex(new V8Regex( in setBlackboxPattern()
|