/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
timeit.py | 12 python timeit.py [-n N] [-r N] [-s S] [-t] [-c] [-h] [--] [statement] 61 # Must be an older Python version (see timeit() below) 66 dummy_src_name = "<timeit-src>" 114 timeit() method. The repeat() method is a convenience to call 115 timeit() multiple times and return a list of results. 158 t.timeit(...) # or t.repeat(...) 178 def timeit(self, number=default_number): member in class:Timer 202 """Call timeit() a few times. 204 This is a convenience function that calls the timeit() 206 specifies how many times to call timeit(), defaulting to 3 227 def timeit(stmt="pass", setup="pass", timer=default_timer, function [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
timeit.py | 12 python timeit.py [-n N] [-r N] [-s S] [-t] [-c] [-h] [--] [statement] 61 # Must be an older Python version (see timeit() below) 66 dummy_src_name = "<timeit-src>" 114 timeit() method. The repeat() method is a convenience to call 115 timeit() multiple times and return a list of results. 158 t.timeit(...) # or t.repeat(...) 178 def timeit(self, number=default_number): member in class:Timer 202 """Call timeit() a few times. 204 This is a convenience function that calls the timeit() 206 specifies how many times to call timeit(), defaulting to 3 227 def timeit(stmt="pass", setup="pass", timer=default_timer, function [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sundry.py | 80 import timeit namespace
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sundry.py | 80 import timeit namespace
|
/external/chromium_org/chrome/test/functional/ |
perf.py | 42 import timeit namespace 282 timer = timeit.Timer(stmt=RunCommand) 283 return timer.timeit(number=1) * 1000 # Convert seconds to milliseconds. [all...] |