matches           725 lib/widget/input_complete.c     size_t matches = 0;
matches           733 lib/widget/input_complete.c     while ((string = (*entry_function) (text, matches, flags)) != NULL)
matches           735 lib/widget/input_complete.c         if (matches + 1 == match_list_size)
matches           740 lib/widget/input_complete.c         match_list[++matches] = string;
matches           741 lib/widget/input_complete.c         match_list[matches + 1] = NULL;
matches           746 lib/widget/input_complete.c     if (matches == 0)
matches           751 lib/widget/input_complete.c         if (matches == 1)
matches           762 lib/widget/input_complete.c             qsort (match_list + 1, matches, sizeof (char *), match_compare);
matches           769 lib/widget/input_complete.c             while (j < matches + 1)
matches           793 lib/widget/input_complete.c                     if (j > matches)
matches           804 lib/widget/input_complete.c             matches = i;
matches           805 lib/widget/input_complete.c             match_list[matches + 1] = NULL;
matches           911 lib/widget/input_complete.c     char **matches = NULL;
matches           916 lib/widget/input_complete.c         matches =
matches           925 lib/widget/input_complete.c         matches = completion_matches (state->word, filename_completion_function, state->flags);
matches           927 lib/widget/input_complete.c         if (matches == NULL && state->is_cd && !IS_PATH_SEP (*state->word) && *state->word != '~')
matches           948 lib/widget/input_complete.c                 while (matches == NULL && c == ':')
matches           962 lib/widget/input_complete.c                         matches =
matches           974 lib/widget/input_complete.c     return matches;
matches          1316 lib/widget/input_complete.c     char **matches = NULL;
matches          1339 lib/widget/input_complete.c         matches = completion_matches (str_cget_next_char (state.p),
matches          1342 lib/widget/input_complete.c         if (matches != NULL)
matches          1350 lib/widget/input_complete.c         matches = completion_matches (state.q, variable_completion_function, state.flags);
matches          1351 lib/widget/input_complete.c         if (matches != NULL)
matches          1360 lib/widget/input_complete.c         matches = completion_matches (state.r, hostname_completion_function, state.flags);
matches          1361 lib/widget/input_complete.c         if (matches != NULL)
matches          1367 lib/widget/input_complete.c     if (matches == NULL && *state.word == '~' && (state.flags & INPUT_COMPLETE_USERNAMES) != 0
matches          1371 lib/widget/input_complete.c         matches = completion_matches (state.word, username_completion_function, state.flags);
matches          1377 lib/widget/input_complete.c     if (matches == NULL)
matches          1378 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
matches          1381 lib/widget/input_complete.c     if (matches == NULL)
matches          1384 lib/widget/input_complete.c         matches = try_complete_all_possible (&state, text, lc_start);
matches          1389 lib/widget/input_complete.c     if (matches != NULL &&
matches          1396 lib/widget/input_complete.c         for (m = matches; *m != NULL; m++)
matches          1406 lib/widget/input_complete.c     return matches;
matches           156 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           960 src/filemanager/find.c     if (matches == 0)
matches           964 src/filemanager/find.c     matches++;
matches          1437 src/filemanager/find.c     matches = 0;