/external/python/cpython3/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 178 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()) 598 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 | 607 def runctx(self, cmd, globals, locals): member in Bdb
|
D | pdb.py | 1602 def runctx(statement, globals, locals): function
|
/external/python/cpython2/Lib/ |
D | cProfile.py | 39 def runctx(statement, globals, locals, filename=None, sort=-1): function 49 prof = prof.runctx(statement, globals, locals) 135 return self.runctx(cmd, dict, dict) 137 def runctx(self, cmd, globals, locals): member in Profile 192 runctx(code, globs, None, options.outfile, options.sort)
|
D | profile.py | 69 def runctx(statement, globals, locals, filename=None, sort=-1): function 77 prof = prof.runctx(statement, globals, locals) 438 return self.runctx(cmd, dict, dict) 440 def runctx(self, cmd, globals, locals): member in Profile 542 p.runctx('f(m)', globals(), locals()) 603 runctx(code, globs, None, options.outfile, options.sort)
|
D | trace.py | 505 self.runctx(cmd, dict, dict) 507 def runctx(self, cmd, globals=None, locals=None): member in Trace 807 t.runctx(code, globs, globs)
|
D | bdb.py | 425 def runctx(self, cmd, globals, locals): member in Bdb
|
D | pdb.py | 1243 def runctx(statement, globals, locals): function
|
/external/python/cpython3/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 | 237 self.tracer.runctx(code, globals(), vars())
|
/external/python/cpython2/Lib/hotshot/ |
D | __init__.py | 58 return self.runctx(cmd, dict, dict) 60 def runctx(self, cmd, globals, locals): member in Profile
|
/external/python/cpython2/Lib/test/ |
D | test_profile.py | 25 prof.runctx("testfunc()", globals(), locals()) 55 prof.runctx(stmt, globals(), locals())
|
D | test_trace.py | 198 self.tracer.runctx(code, globals(), vars())
|
/external/antlr/runtime/Python3/antlr3/ |
D | main.py | 101 profile.runctx( 118 profiler.runctx(
|
/external/antlr/runtime/Python/antlr3/ |
D | main.py | 139 profile.runctx( 156 profiler.runctx(
|
/external/python/cpython2/Doc/library/ |
D | trace.rst | 152 .. method:: runctx(cmd, globals=None, locals=None) 167 results of all previous calls to ``run``, ``runctx`` and ``runfunc``
|
D | hotshot.rst | 84 .. method:: Profile.runctx(cmd, globals, locals)
|
D | bdb.rst | 325 .. method:: runctx(cmd, globals, locals)
|
D | profile.rst | 245 .. function:: runctx(command, globals, locals, filename=None) 307 .. method:: runctx(cmd, globals, locals)
|
/external/python/cpython3/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)
|
/external/python/cpython3/Lib/test/libregrtest/ |
D | main.py | 417 self.tracer.runctx(cmd, globals=globals(), locals=ns)
|