Lines Matching defs:num_locations
332 check_breakpoint_result(test, break_results, num_locations=num_expected_locations)
372 num_locations=num_expected_locations,
379 test, break_results, num_locations=num_expected_locations
411 num_locations=num_expected_locations,
417 test, break_results, num_locations=num_expected_locations
442 num_locations=num_expected_locations,
449 test, break_results, num_locations=num_expected_locations
466 check_breakpoint_result(test, break_results, num_locations=num_expected_locations)
481 check_breakpoint_result(test, break_results, num_locations=num_expected_locations)
504 num_locations=num_expected_locations,
520 num_locations - number of locations set for the breakpoint.
533 r"^Breakpoint (?P<bpno>[0-9]+): (?P<num_locations>[0-9]+) locations\.$",
534 r"^Breakpoint (?P<bpno>[0-9]+): (?P<num_locations>no) locations \(pending\)\.",
552 if not "num_locations" in break_results:
553 num_locations = 1
555 num_locations = break_results["num_locations"]
556 if num_locations == "no":
557 num_locations = 0
559 num_locations = int(break_results["num_locations"])
561 break_results["num_locations"] = num_locations
583 num_locations=-1,
585 out_num_locations = break_results["num_locations"]
587 if num_locations == -1:
591 elif num_locations != -2:
593 num_locations == out_num_locations,
594 "Expecting %d locations, got %d." % (num_locations, out_num_locations),