Lines Matching refs:allLocations
196 std::vector<v8::debug::BreakLocation> allLocations;
198 &allLocations)) {
201 if (!allLocations.size()) return true;
202 v8::debug::BreakLocation current = allLocations[0];
203 for (size_t i = 1; i < allLocations.size(); ++i) {
204 if (allLocations[i].GetLineNumber() == current.GetLineNumber() &&
205 allLocations[i].GetColumnNumber() == current.GetColumnNumber()) {
206 if (allLocations[i].type() != v8::debug::kCommonBreakLocation) {
207 DCHECK(allLocations[i].type() == v8::debug::kCallBreakLocation ||
208 allLocations[i].type() == v8::debug::kReturnBreakLocation);
213 current = allLocations[i];
218 allLocations[i].GetLineNumber() > current.GetLineNumber() ||
219 (allLocations[i].GetColumnNumber() >= current.GetColumnNumber() &&
220 allLocations[i].GetLineNumber() == current.GetLineNumber()));
222 current = allLocations[i];