Lines Matching defs:Breakpoint

8 __all__ = ["BdbQuit", "Bdb", "Breakpoint"]
368 # for bp in Breakpoint.bpbynumber: if bp: bp.bpprint().
389 bp = Breakpoint(filename, lineno, temporary, cond, funcname)
395 Populates this instance's breaks list from the Breakpoint class's
400 for (filename, lineno) in Breakpoint.bplist.keys():
407 the Breakpoint class. If a breakpoint in the Bdb instance no
408 longer exists in the Breakpoint class, then it's removed from the
411 if (filename, lineno) not in Breakpoint.bplist:
428 for bp in Breakpoint.bplist[filename, lineno][:]:
434 """Delete a breakpoint by its index in Breakpoint.bpbynumber.
455 blist = Breakpoint.bplist[filename, line]
468 for bp in Breakpoint.bpbynumber:
475 """Return a breakpoint by its index in Breakpoint.bybpnumber.
481 raise ValueError('Breakpoint number expected')
487 bp = Breakpoint.bpbynumber[number]
489 raise ValueError('Breakpoint number %d out of range' % number) from None
491 raise ValueError('Breakpoint %d already deleted' % number)
508 Breakpoint.bplist[filename, lineno] or []
657 class Breakpoint:
658 """Breakpoint class.
665 single instance of class Breakpoint. The latter points to a
695 self.number = Breakpoint.next
696 Breakpoint.next += 1
706 Breakpoint.next = 1
707 Breakpoint.bplist = {}
708 Breakpoint.bpbynumber = [None]
776 # -----------end of Breakpoint class----------
788 # Breakpoint was set via line number.
790 # Breakpoint was set at a line with a def statement and the function
795 # Breakpoint set via function name.
824 possibles = Breakpoint.bplist[file, line]