matches           870 lib/widget/input_complete.c     GPtrArray *matches = NULL;
matches           875 lib/widget/input_complete.c         matches = completion_matches (state->word, command_completion_function,
matches           883 lib/widget/input_complete.c         matches = completion_matches (state->word, filename_completion_function, state->flags);
matches           885 lib/widget/input_complete.c         if (matches == NULL && state->is_cd && !IS_PATH_SEP (*state->word) && *state->word != '~')
matches           906 lib/widget/input_complete.c                 while (matches == NULL && c == ':')
matches           920 lib/widget/input_complete.c                         matches = completion_matches (state->r, filename_completion_function,
matches           931 lib/widget/input_complete.c     return matches;
matches          1280 lib/widget/input_complete.c     GPtrArray *matches = NULL;
matches          1303 lib/widget/input_complete.c         matches = completion_matches (str_cget_next_char (state.p), command_completion_function,
matches          1305 lib/widget/input_complete.c         if (matches != NULL)
matches          1313 lib/widget/input_complete.c         matches = completion_matches (state.q, variable_completion_function, state.flags);
matches          1314 lib/widget/input_complete.c         if (matches != NULL)
matches          1323 lib/widget/input_complete.c         matches = completion_matches (state.r, hostname_completion_function, state.flags);
matches          1324 lib/widget/input_complete.c         if (matches != NULL)
matches          1330 lib/widget/input_complete.c     if (matches == NULL && *state.word == '~' && (state.flags & INPUT_COMPLETE_USERNAMES) != 0
matches          1334 lib/widget/input_complete.c         matches = completion_matches (state.word, username_completion_function, state.flags);
matches          1340 lib/widget/input_complete.c     if (matches == NULL)
matches          1341 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
matches          1344 lib/widget/input_complete.c     if (matches == NULL)
matches          1347 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
matches          1352 lib/widget/input_complete.c     if (matches != NULL && (flags & INPUT_COMPLETE_FILENAMES) != 0
matches          1358 lib/widget/input_complete.c         for (i = 0; i < matches->len; i++)
matches          1362 lib/widget/input_complete.c             p = g_ptr_array_index (matches, i);
matches          1365 lib/widget/input_complete.c             g_ptr_array_index (matches, i) = str_escape (p, -1, "?*&", TRUE);
matches          1370 lib/widget/input_complete.c     return matches;
matches           153 src/filemanager/find.c static unsigned long matches;             // Number of matches
matches           377 src/filemanager/find.c     label_set_textv (found_num_label, _ ("Found: %lu"), matches);
matches           931 src/filemanager/find.c     if (matches == 0)
matches           935 src/filemanager/find.c     matches++;
matches          1405 src/filemanager/find.c     matches = 0;