Home
last modified time | relevance | path

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

/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/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())
Dregrtest.py590 tracer.runctx('runtest(test, verbose, quiet)',
/external/antlr/antlr-3.4/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/cpython2/Misc/
DHISTORY3424 - Added global runctx function to profile module