Lines Matching refs:BP
26 public static class BP { class in Breakpoint.Manager
30 public BP(Executable method) { in BP() method in Breakpoint.Manager.BP
34 public BP(Executable method, long location) { in BP() method in Breakpoint.Manager.BP
41 return (other instanceof BP) && in equals()
42 method.equals(((BP)other).method) && in equals()
43 location == ((BP)other).location; in equals()
74 private Set<BP> breaks = new HashSet<>();
76 public void setBreakpoints(BP... bs) { in setBreakpoints()
77 for (BP b : bs) { in setBreakpoints()
84 setBreakpoints(new BP(method, location)); in setBreakpoint()
87 public void clearBreakpoints(BP... bs) { in clearBreakpoints()
88 for (BP b : bs) { in clearBreakpoints()
95 clearBreakpoints(new BP(method, location)); in clearBreakpoint()
99 clearBreakpoints(breaks.toArray(new BP[0])); in clearAllBreakpoints()