Searched refs:begidx (Results 1 - 3 of 3) sorted by relevance
/third_party/python/Modules/ |
H A D | readline.c | 92 PyObject *begidx; member 117 Py_CLEAR(state->begidx); in readline_clear() 130 Py_VISIT(state->begidx); in readline_traverse() 527 Py_INCREF(readlinestate_global->begidx); in readline_get_begidx_impl() 528 return readlinestate_global->begidx; in readline_get_begidx_impl() 1145 /* A more flexible constructor that saves the "begidx" and "endidx" 1183 Py_XDECREF(readlinestate_global->begidx); in flex_complete() 1185 readlinestate_global->begidx = PyLong_FromLong((long) start); in flex_complete() 1265 mod_state->begidx = PyLong_FromLong(0L); in setup_readline()
|
/third_party/python/Lib/ |
H A D | cmd.py | 20 arguments text, line, begidx, endidx. text is string we are matching 22 input line (lstripped), begidx and endidx are the beginning and end 262 begidx = readline.get_begidx() - stripped 264 if begidx>0: 275 self.completion_matches = compfunc(text, line, begidx, endidx)
|
H A D | pdb.py | 534 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 6 milliseconds