Home
last modified time | relevance | path

Searched refs:onecmd (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython3/Lib/
Dcmd.py138 stop = self.onecmd(line)
192 def onecmd(self, line): member in Cmd
227 return self.onecmd(self.lastcmd)
Dpdb.py235 if self.onecmd(line):
277 self.onecmd(line)
410 def onecmd(self, line): member in Pdb
418 return cmd.Cmd.onecmd(self, line)
/external/python/cpython2/Lib/
Dcmd.py142 stop = self.onecmd(line)
196 def onecmd(self, line): member in Cmd
231 return self.onecmd(self.lastcmd)
Dpdb.py137 self.onecmd(line)
174 self.onecmd(line)
271 def onecmd(self, line): member in Pdb
279 return cmd.Cmd.onecmd(self, line)
/external/python/apitools/apitools/base/py/
Dapp2.py275 def onecmd(self, line): member in CommandLoop
289 self._last_return_code = cmd.Cmd.onecmd(self, line)
/external/python/cpython2/Doc/library/
Dcmd.rst93 .. method:: Cmd.onecmd(str)
127 used as the command which will be executed by the :meth:`onecmd` method; the
138 return value of the :meth:`onecmd` method. The return value of this method will
/external/python/cpython3/Doc/library/
Dcmd.rst95 .. method:: Cmd.onecmd(str)
129 used as the command which will be executed by the :meth:`onecmd` method; the
140 return value of the :meth:`onecmd` method. The return value of this method will
/external/v8/tools/
Dgrokdump.py3900 InspectionShell(reader, heap).onecmd(options.command)