Searched refs:completion_matches (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Modules/ |
D | readline.c | 35 #define completion_matches(x, y) \ macro 39 extern char **completion_matches(char *, rl_compentry_func_t *); 43 extern char **completion_matches(char *, CPFunction *); 898 return completion_matches(text, *on_completion); in flex_complete()
|
/external/python/cpython3/Lib/ |
D | cmd.py | 275 self.completion_matches = compfunc(text, line, begidx, endidx) 277 return self.completion_matches[state]
|
/external/python/cpython2/Lib/ |
D | cmd.py | 279 self.completion_matches = compfunc(text, line, begidx, endidx) 281 return self.completion_matches[state]
|
/external/python/cpython3/Modules/ |
D | readline.c | 35 #define completion_matches(x, y) \ macro 39 extern char **completion_matches(char *, rl_compentry_func_t *); 43 extern char **completion_matches(char *, CPFunction *); 1063 result = completion_matches((char *)text, *on_completion); in flex_complete()
|