Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dreadline.c88 PyObject *endidx; member
103 Py_CLEAR(state->endidx); in readline_clear()
116 Py_VISIT(state->endidx); in readline_traverse()
450 Py_INCREF(readlinestate_global->endidx); in get_endidx()
451 return readlinestate_global->endidx; in get_endidx()
1080 Py_XDECREF(readlinestate_global->endidx); in flex_complete()
1082 readlinestate_global->endidx = PyLong_FromLong((long) end); in flex_complete()
1147 mod_state->endidx = PyLong_FromLong(0L); in setup_readline()
/external/python/cpython2/Modules/
Dreadline.c303 static PyObject *endidx = NULL; variable
337 Py_INCREF(endidx); in get_endidx()
338 return endidx; in get_endidx()
895 Py_XDECREF(endidx); in flex_complete()
897 endidx = PyInt_FromLong((long) end); in flex_complete()
962 endidx = PyInt_FromLong(0L); in setup_readline()
/external/python/cpython2/Lib/
Dcmd.py267 endidx = readline.get_endidx() - stripped
279 self.completion_matches = compfunc(text, line, begidx, endidx)
/external/python/cpython3/Lib/
Dcmd.py263 endidx = readline.get_endidx() - stripped
275 self.completion_matches = compfunc(text, line, begidx, endidx)
Dpdb.py461 def _complete_location(self, text, line, begidx, endidx): argument
468 ret = self._complete_expression(text, line, begidx, endidx)
480 def _complete_bpnumber(self, text, line, begidx, endidx): argument
487 def _complete_expression(self, text, line, begidx, endidx): argument
1366 def complete_undisplay(self, text, line, begidx, endidx): argument
1424 def complete_unalias(self, text, line, begidx, endidx): argument
/external/python/cpython2/Doc/library/
Dcmd.rst78 arguments *text*, *line*, *begidx*, and *endidx*. *text* is the string prefix
80 the current input line with leading whitespace removed, *begidx* and *endidx*
116 .. method:: Cmd.completedefault(text, line, begidx, endidx)
/external/python/cpython3/Doc/library/
Dcmd.rst76 arguments *text*, *line*, *begidx*, and *endidx*. *text* is the string prefix
78 the current input line with leading whitespace removed, *begidx* and *endidx*
114 .. method:: Cmd.completedefault(text, line, begidx, endidx)