Searched refs:completion_matches (Results 1 – 7 of 7) sorted by relevance
/external/libedit/src/ |
D | filecomplete.c | 280 char ** completion_matches(const char *, char *(*)(const char *, int)); 282 completion_matches(const char *text, char *(*genfunc)(const char *, int)) in completion_matches() function 465 matches = completion_matches( in fn_complete()
|
/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/cpython2/Lib/ |
D | cmd.py | 279 self.completion_matches = compfunc(text, line, begidx, endidx) 281 return self.completion_matches[state]
|
/external/python/cpython3/Lib/ |
D | cmd.py | 275 self.completion_matches = compfunc(text, line, begidx, endidx) 277 return self.completion_matches[state]
|
/external/python/cpython3/Modules/ |
D | readline.c | 36 #define completion_matches(x, y) \ macro 40 extern char **completion_matches(char *, rl_compentry_func_t *); 44 extern char **completion_matches(char *, CPFunction *); 1083 result = completion_matches((char *)text, *on_completion); in flex_complete()
|
/external/libedit/src/editline/ |
D | readline.h | 178 char **completion_matches(const char *, CPFunction *);
|
/external/libedit/examples/ |
D | fileman.c | 254 matches = completion_matches (text, command_generator); in fileman_completion()
|