Home
last modified time | relevance | path

Searched refs:runctx (Results 1 – 13 of 13) sorted by relevance

/third_party/python/Lib/
DcProfile.py18 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)
Dprofile.py59 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)
Dtrace.py441 self.runctx(cmd, dict, dict)
443 def runctx(self, cmd, globals=None, locals=None): member in Trace
728 t.runctx(code, globs, globs)
Dbdb.py624 def runctx(self, cmd, globals, locals): member in Bdb
Dpdb.py1612 def runctx(statement, globals, locals): function
/third_party/python/Lib/test/
Dtest_profile.py35 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(),
Dtest_trace.py238 self.tracer.runctx(code, globals(), vars())
/third_party/python/Doc/library/
Dtrace.rst162 .. method:: runctx(cmd, globals=None, locals=None)
177 results of all previous calls to ``run``, ``runctx`` and ``runfunc``
Dbdb.rst342 .. method:: runctx(cmd, globals, locals)
Dprofile.rst231 .. function:: runctx(command, globals, locals, filename=None, sort=-1)
307 .. method:: runctx(cmd, globals, locals)
/third_party/boost/tools/build/src/
Dbuild_system.py429 r = cProfile.runctx('main_real()', globals(), locals(), "stones.prof")
/third_party/python/Lib/test/libregrtest/
Dmain.py437 self.tracer.runctx(cmd, globals=globals(), locals=ns)
/third_party/python/Misc/
DHISTORY5285 runctx() utility functions is not duplicated in both modules.
20808 - Added global runctx function to profile module