/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pstats.py | 3 import pstats namespace 8 """Tests for pstats.add_callers helper.""" 11 """pstats.add_callers should combine the call results of both target 16 new_callers = pstats.add_callers(target, source) 21 new_callers = pstats.add_callers(target, source)
|
test_profile.py | 4 import pstats namespace 29 stats = pstats.Stats(prof, stream=s) 56 stats = pstats.Stats(prof, stream=s)
|
test_sundry.py | 69 import pstats namespace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pstats.py | 3 import pstats namespace 8 """Tests for pstats.add_callers helper.""" 11 """pstats.add_callers should combine the call results of both target 16 new_callers = pstats.add_callers(target, source) 21 new_callers = pstats.add_callers(target, source)
|
test_profile.py | 4 import pstats namespace 29 stats = pstats.Stats(prof, stream=s) 56 stats = pstats.Stats(prof, stream=s)
|
test_sundry.py | 69 import pstats namespace
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
app_engine_handler.py | 17 import cProfile, pstats, StringIO namespace 30 pstats.Stats(pr, stream=s).sort_stats(profile_mode).print_stats()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/hotshot/ |
stats.py | 4 import pstats namespace 35 # have to the seconds that the profile/pstats module work 52 return pstats.Stats(p)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/hotshot/ |
stats.py | 4 import pstats namespace 35 # have to the seconds that the profile/pstats module work 52 return pstats.Stats(p)
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
main.py | 146 import pstats namespace 147 stats = pstats.Stats('profile.dat')
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
cProfile.py | 80 import pstats namespace 81 pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats() 101 nc = entry.callcount # ncalls column of pstats (before '/') 102 cc = nc - entry.reccallcount # ncalls column of pstats (after '/') 103 tt = entry.inlinetime # tottime column of pstats 104 ct = entry.totaltime # cumtime column of pstats 172 help="Sort order when printing to stdout, based on pstats.Stats class",
|
profile.py | 408 import pstats namespace 409 pstats.Stats(self).strip_dirs().sort_stats(sort). \ 574 print 'Report generating functions are in the "pstats" module\a' 583 help="Sort order when printing to stdout, based on pstats.Stats class",
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
cProfile.py | 80 import pstats namespace 81 pstats.Stats(self).strip_dirs().sort_stats(sort).print_stats() 101 nc = entry.callcount # ncalls column of pstats (before '/') 102 cc = nc - entry.reccallcount # ncalls column of pstats (after '/') 103 tt = entry.inlinetime # tottime column of pstats 104 ct = entry.totaltime # cumtime column of pstats 172 help="Sort order when printing to stdout, based on pstats.Stats class",
|
profile.py | 408 import pstats namespace 409 pstats.Stats(self).strip_dirs().sort_stats(sort). \ 574 print 'Report generating functions are in the "pstats" module\a' 583 help="Sort order when printing to stdout, based on pstats.Stats class",
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
cparse.py | 802 import pstats namespace 803 p=pstats.Stats('prof.out')
|