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          774 lib/widget/input_complete.c check_is_cd (const char *text, int lc_start, input_complete_t flags)
lc_start          785 lib/widget/input_complete.c     q = text + lc_start;
lc_start          796 lib/widget/input_complete.c try_complete_commands_prepare (try_complete_automation_state_t *state, char *text, int *lc_start)
lc_start          801 lib/widget/input_complete.c     if (*lc_start == 0)
lc_start          805 lib/widget/input_complete.c         ti = str_get_prev_char (&text[*lc_start]);
lc_start          867 lib/widget/input_complete.c try_complete_all_possible (try_complete_automation_state_t *state, char *text, int *lc_start)
lc_start          886 lib/widget/input_complete.c             state->q = text + *lc_start;
lc_start         1275 lib/widget/input_complete.c try_complete (char *text, int *lc_start, int *lc_end, input_complete_t flags)
lc_start         1284 lib/widget/input_complete.c     state.word = g_strndup (text + *lc_start, *lc_end - *lc_start);
lc_start         1286 lib/widget/input_complete.c     state.is_cd = check_is_cd (text, *lc_start, state.flags);
lc_start         1293 lib/widget/input_complete.c         try_complete_commands_prepare (&state, text, lc_start);
lc_start         1304 lib/widget/input_complete.c             *lc_start += str_get_next_char (state.p) - state.word;
lc_start         1313 lib/widget/input_complete.c             *lc_start += state.q - state.word;
lc_start         1323 lib/widget/input_complete.c             *lc_start += state.r - state.word;
lc_start         1339 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
lc_start         1345 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;