lc_start           90 lib/widget/input_complete.c MC_MOCKABLE GPtrArray *try_complete (char *text, int *lc_start, int *lc_end,
lc_start          448 lib/widget/input_complete.c             char *lc_start, *name;
lc_start          455 lib/widget/input_complete.c             for (lc_start = bi; bi[0] != '\0' && !str_isspace (bi); str_next_char (&bi))
lc_start          458 lib/widget/input_complete.c             if (bi == lc_start)
lc_start          461 lib/widget/input_complete.c             name = g_strndup (lc_start, bi - lc_start);
lc_start          775 lib/widget/input_complete.c check_is_cd (const char *text, int lc_start, input_complete_t flags)
lc_start          786 lib/widget/input_complete.c     q = text + lc_start;
lc_start          797 lib/widget/input_complete.c try_complete_commands_prepare (try_complete_automation_state_t *state, char *text, int *lc_start)
lc_start          802 lib/widget/input_complete.c     if (*lc_start == 0)
lc_start          806 lib/widget/input_complete.c         ti = str_get_prev_char (&text[*lc_start]);
lc_start          868 lib/widget/input_complete.c try_complete_all_possible (try_complete_automation_state_t *state, char *text, int *lc_start)
lc_start          888 lib/widget/input_complete.c             state->q = text + *lc_start;
lc_start         1280 lib/widget/input_complete.c try_complete (char *text, int *lc_start, int *lc_end, input_complete_t flags)
lc_start         1289 lib/widget/input_complete.c     state.word = g_strndup (text + *lc_start, *lc_end - *lc_start);
lc_start         1291 lib/widget/input_complete.c     state.is_cd = check_is_cd (text, *lc_start, state.flags);
lc_start         1298 lib/widget/input_complete.c         try_complete_commands_prepare (&state, text, lc_start);
lc_start         1310 lib/widget/input_complete.c             *lc_start += str_get_next_char (state.p) - state.word;
lc_start         1319 lib/widget/input_complete.c             *lc_start += state.q - state.word;
lc_start         1329 lib/widget/input_complete.c             *lc_start += state.r - state.word;
lc_start         1345 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
lc_start         1351 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
lc_start           36 tests/lib/widget/complete_engine.c GPtrArray *try_complete (char *text, int *lc_start, int *lc_end, input_complete_t flags);
lc_start           54 tests/lib/widget/complete_engine.c try_complete (char *text, int *lc_start, int *lc_end, input_complete_t flags)
lc_start           57 tests/lib/widget/complete_engine.c     try_complete__lc_start__captured = *lc_start;