Lines Matching refs:all_frames
683 self.assertEqual(f.all_frames, False)
690 self.assertEqual(f.all_frames, True)
693 … f = tracemalloc.Filter(inclusive=False, filename_pattern="test.py", lineno=123, all_frames=True)
697 self.assertEqual(f.all_frames, True)
842 f = tracemalloc.Filter(True, "b.py", all_frames=True)
848 f = tracemalloc.Filter(True, "b.py", all_frames=False)
854 f = tracemalloc.Filter(False, "b.py", all_frames=True)
860 f = tracemalloc.Filter(False, "b.py", all_frames=False)
866 f = tracemalloc.Filter(False, "<unknown>", all_frames=False)
872 f = tracemalloc.Filter(True, "<unknown>", all_frames=True)
878 f = tracemalloc.Filter(False, "<unknown>", all_frames=True)