Home
last modified time | relevance | path

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

/external/libedit/src/
Dfilecomplete.c280 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/
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/cpython2/Lib/
Dcmd.py279 self.completion_matches = compfunc(text, line, begidx, endidx)
281 return self.completion_matches[state]
/external/python/cpython3/Lib/
Dcmd.py275 self.completion_matches = compfunc(text, line, begidx, endidx)
277 return self.completion_matches[state]
/external/python/cpython3/Modules/
Dreadline.c36 #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/
Dreadline.h178 char **completion_matches(const char *, CPFunction *);
/external/libedit/examples/
Dfileman.c254 matches = completion_matches (text, command_generator); in fileman_completion()