matches           869 lib/widget/input_complete.c     GPtrArray *matches = NULL;
matches           874 lib/widget/input_complete.c         matches = completion_matches (state->word, command_completion_function,
matches           882 lib/widget/input_complete.c         matches = completion_matches (state->word, filename_completion_function, state->flags);
matches           884 lib/widget/input_complete.c         if (matches == NULL && state->is_cd && !IS_PATH_SEP (*state->word) && *state->word != '~')
matches           905 lib/widget/input_complete.c                 while (matches == NULL && c == ':')
matches           918 lib/widget/input_complete.c                         matches = completion_matches (state->r, filename_completion_function,
matches           929 lib/widget/input_complete.c     return matches;
matches          1278 lib/widget/input_complete.c     GPtrArray *matches = NULL;
matches          1301 lib/widget/input_complete.c         matches = completion_matches (str_cget_next_char (state.p), command_completion_function,
matches          1303 lib/widget/input_complete.c         if (matches != NULL)
matches          1311 lib/widget/input_complete.c         matches = completion_matches (state.q, variable_completion_function, state.flags);
matches          1312 lib/widget/input_complete.c         if (matches != NULL)
matches          1321 lib/widget/input_complete.c         matches = completion_matches (state.r, hostname_completion_function, state.flags);
matches          1322 lib/widget/input_complete.c         if (matches != NULL)
matches          1328 lib/widget/input_complete.c     if (matches == NULL && *state.word == '~' && (state.flags & INPUT_COMPLETE_USERNAMES) != 0
matches          1332 lib/widget/input_complete.c         matches = completion_matches (state.word, username_completion_function, state.flags);
matches          1338 lib/widget/input_complete.c     if (matches == NULL)
matches          1339 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
matches          1342 lib/widget/input_complete.c     if (matches == NULL)
matches          1345 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
matches          1350 lib/widget/input_complete.c     if (matches != NULL && (flags & INPUT_COMPLETE_FILENAMES) != 0
matches          1356 lib/widget/input_complete.c         for (i = 0; i < matches->len; i++)
matches          1360 lib/widget/input_complete.c             p = g_ptr_array_index (matches, i);
matches          1363 lib/widget/input_complete.c             g_ptr_array_index (matches, i) = str_escape (p, -1, "?*&", TRUE);
matches          1368 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;