Lines Matching refs:all_frames
617 self.assertEqual(f.all_frames, False)
624 self.assertEqual(f.all_frames, True)
627 … f = tracemalloc.Filter(inclusive=False, filename_pattern="test.py", lineno=123, all_frames=True)
631 self.assertEqual(f.all_frames, True)
776 f = tracemalloc.Filter(True, "b.py", all_frames=True)
782 f = tracemalloc.Filter(True, "b.py", all_frames=False)
788 f = tracemalloc.Filter(False, "b.py", all_frames=True)
794 f = tracemalloc.Filter(False, "b.py", all_frames=False)
800 f = tracemalloc.Filter(False, "<unknown>", all_frames=False)
806 f = tracemalloc.Filter(True, "<unknown>", all_frames=True)
812 f = tracemalloc.Filter(False, "<unknown>", all_frames=True)