Home
last modified time | relevance | path

Searched refs:sort_stats (Results 1 – 11 of 11) sorted by relevance

/external/python/cpython2/Doc/library/
Dprofile.rst153 ``-s`` specifies one of the :func:`~pstats.Stats.sort_stats` sort values to sort
161 p.strip_dirs().sort_stats(-1).print_stats()
164 the module names. The :meth:`~pstats.Stats.sort_stats` method sorted all the
169 p.sort_stats('name')
176 p.sort_stats('cumulative').print_stats(10)
185 p.sort_stats('time').print_stats(10)
192 p.sort_stats('file').print_stats('__init__')
198 p.sort_stats('time', 'cum').print_stats(.5, 'init')
277 ps = pstats.Stats(pr, stream=s).sort_stats(sortby)
381 .. method:: sort_stats(*keys)
[all …]
Dhotshot.rst139 >>> stats.sort_stats('time', 'calls')
/external/python/cpython2/Lib/hotshot/
Dstones.py18 stats.sort_stats('time', 'calls')
/external/python/cpython2/Tools/scripts/
Dhotshotmain.py29 stats.sort_stats("time", "calls")
Dndiff.py131 stats.strip_dirs().sort_stats('time').print_stats()
/external/python/cpython2/Lib/test/
Dtest_profile.py30 stats.strip_dirs().sort_stats("stdname")
/external/python/cpython2/Lib/
DcProfile.py81 pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats()
Dpstats.py209 def sort_stats(self, *field): member in Stats
658 self.stats.sort_stats(*line.split())
Dprofile.py409 pstats.Stats(self).strip_dirs().sort_stats(sort). \
/external/vulkan-validation-layers/
Dlvl_genvk.py273 p.strip_dirs().sort_stats('time').print_stats(50)
/external/antlr/antlr-3.4/runtime/Python/antlr3/
Dmain.py149 stats.sort_stats('time')