Searched refs:BP (Results 1 – 6 of 6) sorted by relevance
/art/test/993-breakpoints/src/art/ |
D | Test993.java | 260 private static Breakpoint.Manager.BP BP(Executable m) { in BP() method in Test993 261 return new Breakpoint.Manager.BP(m); in BP() 289 Breakpoint.Manager.BP[] tc1_bps = new Breakpoint.Manager.BP[] { in runConstructorTests() 290 BP(tc1_construct), in runConstructorTests() 299 Breakpoint.Manager.BP[] tc1ext_bps = new Breakpoint.Manager.BP[] { in runConstructorTests() 300 BP(tc1_construct), BP(tc1ext_construct), in runConstructorTests() 326 Breakpoint.Manager.BP[] static_breakpoints = new Breakpoint.Manager.BP[] { in runMethodTests() 327 BP(breakpoint_method) in runMethodTests() 337 Breakpoint.Manager.BP[] private_static_breakpoints = new Breakpoint.Manager.BP[] { in runMethodTests() 338 BP(private_breakpoint_method) in runMethodTests() [all …]
|
D | Breakpoint.java | 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() [all …]
|
/art/test/994-breakpoint-line/src/art/ |
D | Breakpoint.java | 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() [all …]
|
/art/test/997-single-step/src/art/ |
D | Breakpoint.java | 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() [all …]
|
/art/test/995-breakpoints-throw/src/art/ |
D | Breakpoint.java | 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() [all …]
|
/art/test/996-breakpoint-obsolete/src/art/ |
D | Breakpoint.java | 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() [all …]
|