Home
last modified time | relevance | path

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

12

/external/python/cpython3/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
178 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())
598 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.py607 def runctx(self, cmd, globals, locals): member in Bdb
Dpdb.py1602 def runctx(statement, globals, locals): function
/external/python/cpython2/Lib/
DcProfile.py39 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)
Dprofile.py69 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)
Dtrace.py505 self.runctx(cmd, dict, dict)
507 def runctx(self, cmd, globals=None, locals=None): member in Trace
807 t.runctx(code, globs, globs)
Dbdb.py425 def runctx(self, cmd, globals, locals): member in Bdb
Dpdb.py1243 def runctx(statement, globals, locals): function
/external/python/cpython3/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.py237 self.tracer.runctx(code, globals(), vars())
/external/python/cpython2/Lib/hotshot/
D__init__.py58 return self.runctx(cmd, dict, dict)
60 def runctx(self, cmd, globals, locals): member in Profile
/external/python/cpython2/Lib/test/
Dtest_profile.py25 prof.runctx("testfunc()", globals(), locals())
55 prof.runctx(stmt, globals(), locals())
Dtest_trace.py198 self.tracer.runctx(code, globals(), vars())
/external/antlr/runtime/Python3/antlr3/
Dmain.py101 profile.runctx(
118 profiler.runctx(
/external/antlr/runtime/Python/antlr3/
Dmain.py139 profile.runctx(
156 profiler.runctx(
/external/python/cpython2/Doc/library/
Dtrace.rst152 .. method:: runctx(cmd, globals=None, locals=None)
167 results of all previous calls to ``run``, ``runctx`` and ``runfunc``
Dhotshot.rst84 .. method:: Profile.runctx(cmd, globals, locals)
Dbdb.rst325 .. method:: runctx(cmd, globals, locals)
Dprofile.rst245 .. function:: runctx(command, globals, locals, filename=None)
307 .. method:: runctx(cmd, globals, locals)
/external/python/cpython3/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)
/external/python/cpython3/Lib/test/libregrtest/
Dmain.py417 self.tracer.runctx(cmd, globals=globals(), locals=ns)

12