Lines Matching defs:location
53 breakpoint = [this](const JSPtLocation &location) {
54 ASSERT_TRUE(location.GetMethodId().IsValid());
55 ASSERT_LOCATION_EQ(location, pointerLocations_.at(breakpointCounter_));
57 TestUtil::SuspendUntilContinue(DebugEvent::BREAKPOINT, location);
67 singleStep = [this](const JSPtLocation &location) {
68 if (debugger_->NotifySingleStep(location)) {
69 ASSERT_TRUE(location.GetMethodId().IsValid());
70 ASSERT_LOCATION_EQ(location, stepLocations_.at(stepCompleteCounter_));
72 TestUtil::SuspendUntilContinue(DebugEvent::STEP_COMPLETE, location);
117 JSPtLocation location = TestUtil::GetLocation(sourceFile_.c_str(), arr[i * LINE_COLUMN],
119 locations.push_back(location);