Home
last modified time | relevance | path

Searched refs:endidx (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Modules/
Dreadline.c91 PyObject *endidx; member
116 Py_CLEAR(state->endidx); in readline_clear()
129 Py_VISIT(state->endidx); in readline_traverse()
541 Py_INCREF(readlinestate_global->endidx); in readline_get_endidx_impl()
542 return readlinestate_global->endidx; in readline_get_endidx_impl()
1182 Py_XDECREF(readlinestate_global->endidx); in flex_complete()
1184 readlinestate_global->endidx = PyLong_FromLong((long) end); in flex_complete()
1264 mod_state->endidx = PyLong_FromLong(0L); in setup_readline()
/third_party/python/Lib/
Dcmd.py263 endidx = readline.get_endidx() - stripped
275 self.completion_matches = compfunc(text, line, begidx, endidx)
Dpdb.py465 def _complete_location(self, text, line, begidx, endidx): argument
472 ret = self._complete_expression(text, line, begidx, endidx)
484 def _complete_bpnumber(self, text, line, begidx, endidx): argument
491 def _complete_expression(self, text, line, begidx, endidx): argument
1384 def complete_undisplay(self, text, line, begidx, endidx): argument
1441 def complete_unalias(self, text, line, begidx, endidx): argument
/third_party/python/Doc/library/
Dcmd.rst80 arguments *text*, *line*, *begidx*, and *endidx*. *text* is the string prefix
82 the current input line with leading whitespace removed, *begidx* and *endidx*
118 .. method:: Cmd.completedefault(text, line, begidx, endidx)