Home
last modified time | relevance | path

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

/external/v8/src/inspector/
Dv8-debugger-agent-impl.cc190 size_t prevMatch = searchArea.reverseFind(hint, offset); in adjustBreakpointLocation() local
191 if (nextMatch == String16::kNotFound && prevMatch == String16::kNotFound) { in adjustBreakpointLocation()
196 bestMatch = prevMatch; in adjustBreakpointLocation()
197 } else if (prevMatch == String16::kNotFound) { in adjustBreakpointLocation()
200 bestMatch = nextMatch - offset < offset - prevMatch ? nextMatch : prevMatch; in adjustBreakpointLocation()