/third_party/python/Lib/ |
D | cProfile.py | 18 def runctx(statement, globals, locals, filename=None, sort=-1): function 19 return _pyprofile._Utils(Profile).runctx(statement, globals, locals, 23 runctx.__doc__ = _pyprofile.runctx.__doc__ 95 return self.runctx(cmd, dict, dict) 97 def runctx(self, cmd, globals, locals): member in Profile 179 runctx(code, globs, None, options.outfile, options.sort)
|
D | profile.py | 59 def runctx(self, statement, globals, locals, filename, sort): member in _Utils 62 prof.runctx(statement, globals, locals) 93 def runctx(statement, globals, locals, filename=None, sort=-1): function 99 return _Utils(Profile).runctx(statement, globals, locals, filename, sort) 416 return self.runctx(cmd, dict, dict) 418 def runctx(self, cmd, globals, locals): member in Profile 520 p.runctx('f(m)', globals(), locals()) 599 runctx(code, globs, None, options.outfile, options.sort)
|
D | trace.py | 441 self.runctx(cmd, dict, dict) 443 def runctx(self, cmd, globals=None, locals=None): member in Trace 728 t.runctx(code, globs, globs)
|
D | bdb.py | 624 def runctx(self, cmd, globals, locals): member in Bdb
|
D | pdb.py | 1612 def runctx(statement, globals, locals): function
|
/third_party/python/Lib/test/ |
D | test_profile.py | 35 prof.runctx("testfunc()", globals(), locals()) 82 prof.runctx(stmt, globals(), locals()) 97 self.profilermodule.runctx("testfunc()", globals(), locals()) 98 self.profilermodule.runctx("testfunc()", globals(), locals(),
|
D | test_trace.py | 238 self.tracer.runctx(code, globals(), vars())
|
/third_party/python/Doc/library/ |
D | trace.rst | 162 .. method:: runctx(cmd, globals=None, locals=None) 177 results of all previous calls to ``run``, ``runctx`` and ``runfunc``
|
D | bdb.rst | 342 .. method:: runctx(cmd, globals, locals)
|
D | profile.rst | 231 .. function:: runctx(command, globals, locals, filename=None, sort=-1) 307 .. method:: runctx(cmd, globals, locals)
|
/third_party/boost/tools/build/src/ |
D | build_system.py | 429 r = cProfile.runctx('main_real()', globals(), locals(), "stones.prof")
|
/third_party/python/Lib/test/libregrtest/ |
D | main.py | 437 self.tracer.runctx(cmd, globals=globals(), locals=ns)
|
/third_party/python/Misc/ |
D | HISTORY | 5285 runctx() utility functions is not duplicated in both modules. 20808 - Added global runctx function to profile module
|