Lines Matching refs:bplist
400 for (filename, lineno) in Breakpoint.bplist.keys():
411 if (filename, lineno) not in Breakpoint.bplist:
428 for bp in Breakpoint.bplist[filename, lineno][:]:
455 blist = Breakpoint.bplist[filename, line]
508 Breakpoint.bplist[filename, lineno] or []
676 bplist = {} # indexed by (file, lineno) tuple variable in Breakpoint
696 if (file, line) in self.bplist:
697 self.bplist[file, line].append(self)
699 self.bplist[file, line] = [self]
704 Breakpoint.bplist = {}
716 self.bplist[index].remove(self)
717 if not self.bplist[index]:
719 del self.bplist[index]
818 possibles = Breakpoint.bplist[file, line]