Home
last modified time | relevance | path

Searched refs:completion_matches (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Modules/
Dreadline.c35 #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/
Dcmd.py275 self.completion_matches = compfunc(text, line, begidx, endidx)
277 return self.completion_matches[state]
/external/python/cpython2/Lib/
Dcmd.py279 self.completion_matches = compfunc(text, line, begidx, endidx)
281 return self.completion_matches[state]
/external/python/cpython3/Modules/
Dreadline.c35 #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()