Lines Matching defs:current
520 // Clear all current stepping setup.
595 // Clear all current stepping setup.
655 // A break location is considered muted if break locations on the current
1056 // This method forces V8 to break on next function call regardless current
1219 // On StepOut we'll ignore our further calls to current function in
1237 // No longer perform the current async step.
1290 // Skip the current frame, find the first frame we want to step out to
1319 // We want to step out, so skip the current frame.
1390 // The current implementation just runs through all the breakpoints. When the
1576 for (DebugInfoListNode* current = debug_info_list_; current != nullptr;
1577 current = current->next()) {
1578 if (current->debug_info()->CanBreakAtEntry()) {
1580 if (current->debug_info()->shared().IsApiFunction()) {
2025 DebugInfoListNode* current = debug_info_list_;
2026 while (current != nullptr) {
2027 DebugInfoListNode* next = current->next();
2028 Handle<DebugInfo> debug_info = current->debug_info();
2031 FreeDebugInfoListNode(prev, current);
2032 current = next;
2034 prev = current;
2035 current = next;
2155 // Uncaught exception is blackboxed if all current frames are blackboxed,
2639 DebugInfoListNode* current = debug_info_list_;
2640 while (current != nullptr) {
2641 Handle<DebugInfo> debug_info = current->debug_info();
2653 current = current->next();