Home | History | Annotate | Download | only in art

Lines Matching defs:BP

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