Home
last modified time | relevance | path

Searched refs:all_frames (Results 1 – 4 of 4) sorted by relevance

/external/webrtc/modules/audio_mixer/
Dframe_combiner_unittest.cc76 const std::vector<AudioFrame*> all_frames = {&frame1, &frame2}; in TEST() local
83 all_frames.begin(), all_frames.begin() + number_of_frames); in TEST()
100 const std::vector<AudioFrame*> all_frames = {&frame1, &frame2}; in TEST() local
107 all_frames.begin(), all_frames.begin() + number_of_frames); in TEST()
129 const std::vector<AudioFrame*> all_frames = {&frame1, &frame2}; in TEST() local
136 all_frames.begin(), all_frames.begin() + number_of_frames); in TEST()
156 const std::vector<AudioFrame*> all_frames = {&frame1, &frame2}; in TEST() local
163 all_frames.begin(), all_frames.begin() + number_of_frames); in TEST()
/external/python/cpython3/Lib/test/
Dtest_tracemalloc.py663 self.assertEqual(f.all_frames, False)
670 self.assertEqual(f.all_frames, True)
673 … f = tracemalloc.Filter(inclusive=False, filename_pattern="test.py", lineno=123, all_frames=True)
677 self.assertEqual(f.all_frames, True)
822 f = tracemalloc.Filter(True, "b.py", all_frames=True)
828 f = tracemalloc.Filter(True, "b.py", all_frames=False)
834 f = tracemalloc.Filter(False, "b.py", all_frames=True)
840 f = tracemalloc.Filter(False, "b.py", all_frames=False)
846 f = tracemalloc.Filter(False, "<unknown>", all_frames=False)
852 f = tracemalloc.Filter(True, "<unknown>", all_frames=True)
[all …]
/external/python/cpython3/Lib/
Dtracemalloc.py355 lineno=None, all_frames=False, domain=None): argument
360 self.all_frames = all_frames
380 if self.all_frames:
/external/python/cpython3/Doc/library/
Dtracemalloc.rst447 .. class:: Filter(inclusive: bool, filename_pattern: str, lineno: int=None, all_frames: bool=False,…
497 .. attribute:: all_frames
499 If *all_frames* is ``True``, all frames of the traceback are checked. If
500 *all_frames* is ``False``, only the most recent frame is checked.