Home
last modified time | relevance | path

Searched refs:endidx (Results 1 - 3 of 3) sorted by relevance

/third_party/python/Modules/
H A Dreadline.c93 PyObject *endidx; member
118 Py_CLEAR(state->endidx); in readline_clear()
131 Py_VISIT(state->endidx); in readline_traverse()
543 Py_INCREF(readlinestate_global->endidx); in readline_get_endidx_impl()
544 return readlinestate_global->endidx; in readline_get_endidx_impl()
1145 /* A more flexible constructor that saves the "begidx" and "endidx"
1184 Py_XDECREF(readlinestate_global->endidx); in flex_complete()
1186 readlinestate_global->endidx = PyLong_FromLong((long) end); in flex_complete()
1266 mod_state->endidx = PyLong_FromLong(0L); in setup_readline()
/third_party/python/Lib/
H A Dcmd.py20 arguments text, line, begidx, endidx. text is string we are matching
22 input line (lstripped), begidx and endidx are the beginning and end
263 endidx = readline.get_endidx() - stripped
275 self.completion_matches = compfunc(text, line, begidx, endidx)
H A Dpdb.py534 def _complete_location(self, text, line, begidx, endidx):
541 ret = self._complete_expression(text, line, begidx, endidx)
553 def _complete_bpnumber(self, text, line, begidx, endidx):
560 def _complete_expression(self, text, line, begidx, endidx):
1465 def complete_undisplay(self, text, line, begidx, endidx):
1522 def complete_unalias(self, text, line, begidx, endidx):

Completed in 5 milliseconds