Searched refs:runcode (Results 1 – 15 of 15) sorted by relevance
/external/python/cpython2/Lib/ |
D | code.py | 87 self.runcode(code) 90 def runcode(self, code): member in InteractiveInterpreter
|
D | rexec.py | 567 def runcode(self, co): member in test.RestrictedConsole 569 r.s_apply(code.InteractiveConsole.runcode, (self, co))
|
/external/python/cpython3/Lib/ |
D | code.py | 74 self.runcode(code) 77 def runcode(self, code): member in InteractiveInterpreter
|
/external/python/cpython2/Lib/hotshot/ |
D | __init__.py | 67 self._prof.runcode(code, globals, locals)
|
/external/pdfium/core/fxcodec/jbig2/ |
D | JBig2_Context.cpp | 1160 int32_t runcode = static_cast<int32_t>(j); in DecodeSymbolIDHuffmanTable() local 1161 if (runcode < 32) { in DecodeSymbolIDHuffmanTable() 1162 SBSYMCODES[i].codelen = runcode; in DecodeSymbolIDHuffmanTable() 1164 } else if (runcode == 32) { in DecodeSymbolIDHuffmanTable() 1168 } else if (runcode == 33) { in DecodeSymbolIDHuffmanTable() 1172 } else if (runcode == 34) { in DecodeSymbolIDHuffmanTable() 1181 if (runcode == 32 && i > 0) in DecodeSymbolIDHuffmanTable()
|
/external/python/cpython3/Lib/asyncio/ |
D | __main__.py | 22 def runcode(self, code): member in AsyncIOInteractiveConsole
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_run.py | 413 ex.runcode('1/0') 418 ex.runcode('1/0') 422 ex.runcode('1/0')
|
/external/python/cpython2/Lib/idlelib/ |
D | ScriptBinding.py | 168 interp.runcode(code)
|
D | run.py | 319 def runcode(self, code): member in Executive
|
D | PyShell.py | 663 self.runcode(code) 778 def runcode(self, code): member in ModifiedInterpreter
|
/external/python/cpython3/Lib/idlelib/ |
D | runscript.py | 166 interp.runcode(code)
|
D | run.py | 572 def runcode(self, code): member in Executive
|
D | pyshell.py | 693 self.runcode(code) 776 def runcode(self, code): member in ModifiedInterpreter
|
/external/python/cpython2/Doc/library/ |
D | code.rst | 85 code is executed by calling the :meth:`runcode` (which also handles run-time 92 .. method:: InteractiveInterpreter.runcode(code)
|
/external/python/cpython3/Doc/library/ |
D | code.rst | 90 code is executed by calling the :meth:`runcode` (which also handles run-time 97 .. method:: InteractiveInterpreter.runcode(code)
|