lc_start           91 lib/widget/input_complete.c MC_MOCKABLE GPtrArray *try_complete (char *text, int *lc_start, int *lc_end,
lc_start          449 lib/widget/input_complete.c             char *lc_start, *name;
lc_start          456 lib/widget/input_complete.c             for (lc_start = bi; bi[0] != '\0' && !str_isspace (bi); str_next_char (&bi))
lc_start          459 lib/widget/input_complete.c             if (bi == lc_start)
lc_start          462 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          887 lib/widget/input_complete.c             state->q = text + *lc_start;
lc_start         1277 lib/widget/input_complete.c try_complete (char *text, int *lc_start, int *lc_end, input_complete_t flags)
lc_start         1286 lib/widget/input_complete.c     state.word = g_strndup (text + *lc_start, *lc_end - *lc_start);
lc_start         1288 lib/widget/input_complete.c     state.is_cd = check_is_cd (text, *lc_start, state.flags);
lc_start         1295 lib/widget/input_complete.c         try_complete_commands_prepare (&state, text, lc_start);
lc_start         1306 lib/widget/input_complete.c             *lc_start += str_get_next_char (state.p) - state.word;
lc_start         1315 lib/widget/input_complete.c             *lc_start += state.q - state.word;
lc_start         1325 lib/widget/input_complete.c             *lc_start += state.r - state.word;
lc_start         1341 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
lc_start         1347 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;