Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
Dreadline.c87 PyObject *begidx; member
102 Py_CLEAR(state->begidx); in readline_clear()
115 Py_VISIT(state->begidx); in readline_traverse()
436 Py_INCREF(readlinestate_global->begidx); in get_begidx()
437 return readlinestate_global->begidx; in get_begidx()
1079 Py_XDECREF(readlinestate_global->begidx); in flex_complete()
1081 readlinestate_global->begidx = PyLong_FromLong((long) start); in flex_complete()
1146 mod_state->begidx = PyLong_FromLong(0L); in setup_readline()
/external/python/cpython2/Modules/
Dreadline.c302 static PyObject *begidx = NULL; variable
323 Py_INCREF(begidx); in get_begidx()
324 return begidx; in get_begidx()
894 Py_XDECREF(begidx); in flex_complete()
896 begidx = PyInt_FromLong((long) start); in flex_complete()
961 begidx = PyInt_FromLong(0L); in setup_readline()
/external/python/cpython2/Lib/
Dcmd.py266 begidx = readline.get_begidx() - stripped
268 if begidx>0:
279 self.completion_matches = compfunc(text, line, begidx, endidx)
/external/python/cpython3/Lib/
Dcmd.py262 begidx = readline.get_begidx() - stripped
264 if begidx>0:
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)