Searched refs:matches (Results 51 - 75 of 295) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h48 StringList *matches = nullptr) override;
53 StringList *matches = nullptr) override;
104 StringList *matches = nullptr) override;
107 StringList *matches = nullptr) override;
/openbsd-current/sys/dev/pci/drm/include/linux/
H A Dmod_devicetable.h38 struct dmi_strmatch matches[4]; member in struct:dmi_system_id
/openbsd-current/gnu/usr.bin/perl/t/re/
H A Dstclass_threads.t71 "Threaded and unthreaded stclass behavior matches (n=%d)",
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/
H A DCuda.cpp349 bool IsDebugEnabled = !A || A->getOption().matches(options::OPT_O0) ||
355 if (Opt.matches(options::OPT_gN_Group)) {
356 if (Opt.matches(options::OPT_g0) || Opt.matches(options::OPT_ggdb0))
358 if (Opt.matches(options::OPT_gline_directives_only))
415 if (A->getOption().matches(options::OPT_O4) ||
416 A->getOption().matches(options::OPT_Ofast))
418 else if (A->getOption().matches(options::OPT_O0))
420 else if (A->getOption().matches(options::OPT_O)) {
497 if (!(A->getOption().matches(option
[all...]
H A DCommonArgs.cpp266 if (A.getOption().matches(options::OPT_Z_reserved_lib_stdcxx))
268 else if (A.getOption().matches(options::OPT_Z_reserved_lib_cckext))
270 else if (A.getOption().matches(options::OPT_z)) {
274 } else if (A.getOption().matches(options::OPT_b)) {
312 if (A->getOption().matches(OnOpt))
620 // The optimization level matches
623 if (A->getOption().matches(options::OPT_O4) ||
624 A->getOption().matches(options::OPT_Ofast))
626 else if (A->getOption().matches(options::OPT_O)) {
632 } else if (A->getOption().matches(option
[all...]
/openbsd-current/libexec/spamd/
H A Dsdl.c27 * setup) must keep track of *all* matches, so as to tell someone all the
291 * Return 0 if the address a (with mask m) matches address key
314 * Return 0 if the address a (with mask m) matches address key
375 int matches = 0; local
382 grow_sdlist(sdnew, matches, sdnewlen);
383 sdnew[matches] = sdl;
384 matches++;
385 sdnew[matches] = NULL;
396 int matches = 0; local
403 grow_sdlist(sdnew, matches, sdnewle
[all...]
/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dhandy_base.pl231 my $matches = search_invlist(\@invlist, $n);
232 if (! defined $matches) {
233 $matches = 0;
236 $matches = truth(! ($matches % 2));
286 my $truth = $matches;
326 $truth = $matches;
/openbsd-current/gnu/llvm/clang/lib/Tooling/
H A DInterpolatingCompilationDatabase.cpp24 // - points are awarded if the filename matches (ignoring extension)
25 // - points are awarded if the directory structure matches
176 if (Opt.matches(OPT_INPUT) || Opt.matches(OPT_o) ||
177 (ClangCLMode && (Opt.matches(OPT__SLASH_Fa) ||
178 Opt.matches(OPT__SLASH_Fe) ||
179 Opt.matches(OPT__SLASH_Fi) ||
180 Opt.matches(OPT__SLASH_Fo))))
184 if (Opt.matches(OPT__DASH_DASH))
286 if (Opt.matches(OPT__SLASH_T
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/tui/
H A Dtui-io.c401 tui_rl_display_match_list (char **matches, int len, int max) argument
449 qsort (matches + 1, len, sizeof (char *),
461 if (l > len || matches[l] == 0)
465 temp = printable_part (matches[l]);
466 printed_len = print_filename (temp, matches[l]);
480 for (i = 1; matches[i]; i++)
482 temp = printable_part (matches[i]);
483 printed_len = print_filename (temp, matches[i]);
485 if (matches[i+1])
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dcompleter.c45 char *line_completion_function (const char *text, int matches, char *line_buffer,
53 (2) If one of the matches contains a word break character, readline
102 readline_line_completion_function (const char *text, int matches)
104 return line_completion_function (text, matches, rl_line_buffer, rl_point);
613 MATCHES is the number of matches that have currently been collected from
627 line_completion_function (const char *text, int matches, char *line_buffer, int point)
633 if (matches == 0)
101 readline_line_completion_function(const char *text, int matches) argument
626 line_completion_function(const char *text, int matches, char *line_buffer, int point) argument
H A Dobjc-lang.c837 int matches = 0; local
895 matches++;
899 if (matches)
904 sym_arr = alloca (matches * sizeof (struct symbol *));
905 matches = 0;
920 sym_arr[matches++] = (struct symbol *) msymbol;
924 qsort (sym_arr, matches, sizeof (struct minimal_symbol *),
928 for (ix = 0; ix < matches; ix++) /* Now do the output. */
988 int matches = 0; local
1030 matches
[all...]
H A Dcorelow.c132 list if nothing matches. Returns pointer to set that is
140 int matches = 0;; local
151 matches++;
154 if (matches > 1)
157 bfd_get_filename (abfd), matches);
159 else if (matches == 0)
/openbsd-current/gnu/llvm/lldb/source/Interpreter/
H A DOptionArgParser.cpp222 llvm::SmallVector<llvm::StringRef, 4> matches; local
223 if (g_symbol_plus_offset_regex.Execute(sref, &matches)) {
225 std::string name = matches[1].str();
226 std::string sign = matches[2].str();
227 std::string str_offset = matches[3].str();
H A DCommandInterpreter.cpp331 "directly into a function whose name matches the "
920 const char *cmd_str, bool include_aliases, StringList &matches,
922 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches,
926 AddNamesMatchingPartialString(m_alias_dict, cmd_str, matches,
930 return matches.GetSize();
992 bool exact, StringList *matches,
1023 // We will only get into here if we didn't find any exact matches.
1029 if (matches == nullptr)
1030 matches = &local_matches;
1039 // empty CommandObjectSP and the list of matches
919 GetCommandNamesMatchingPartialString( const char *cmd_str, bool include_aliases, StringList &matches, StringList &descriptions) argument
991 GetCommandSP(llvm::StringRef cmd_str, bool include_aliases, bool exact, StringList *matches, StringList *descriptions) const argument
1229 GetCommandObject(llvm::StringRef cmd_str, StringList *matches, StringList *descriptions) const argument
1264 GetUserCommandObject( llvm::StringRef cmd, StringList *matches, StringList *descriptions) const argument
1312 StringList matches; local
3382 StringList matches; local
[all...]
/openbsd-current/regress/sys/kern/pledge/generic/
H A Dmanager.c98 regmatch_t matches[2]; local
122 error = regexec(&regex, output, 2, matches, 0);
135 output[matches[1].rm_eo] = '\0';
136 ret = strtonum(&output[matches[1].rm_so], 0, 255, &errstr);
139 &output[matches[1].rm_so], errstr);
/openbsd-current/gnu/llvm/lldb/source/API/
H A DSBCommandInterpreter.cpp215 int match_start_point, int max_return_elements, SBStringList &matches) {
217 max_return_elements, matches);
222 matches, dummy_descriptions);
227 int match_start_point, int max_return_elements, SBStringList &matches,
230 max_return_elements, matches, descriptions);
285 matches.AppendList(temp_matches_list);
293 int max_return_elements, SBStringList &matches,
296 max_return_elements, matches, descriptions);
302 matches, descriptions);
309 lldb::SBStringList &matches) {
213 HandleCompletion( const char *current_line, const char *cursor, const char *last_char, int match_start_point, int max_return_elements, SBStringList &matches) argument
225 HandleCompletionWithDescriptions( const char *current_line, const char *cursor, const char *last_char, int match_start_point, int max_return_elements, SBStringList &matches, SBStringList &descriptions) argument
291 HandleCompletionWithDescriptions( const char *current_line, uint32_t cursor_pos, int match_start_point, int max_return_elements, SBStringList &matches, SBStringList &descriptions) argument
305 HandleCompletion(const char *current_line, uint32_t cursor_pos, int match_start_point, int max_return_elements, lldb::SBStringList &matches) argument
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Option/
H A DArgList.cpp74 return A->getOption().matches(Pos);
81 return A->getOption().matches(Pos) || A->getOption().matches(PosAlias);
100 if (A->getOption().matches(Pos))
110 if (Arg->getOption().matches(Id)) {
117 if (Arg->getOption().matches(Id)) {
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DChrootChecker.cpp67 if (Chroot.matches(Call)) {
71 if (Chdir.matches(Call)) {
/openbsd-current/gnu/lib/libreadline/examples/
H A Dfileman.c253 in case we want to do some simple parsing. Return the array of matches,
260 char **matches; local
262 matches = (char **)NULL;
268 matches = rl_completion_matches (text, command_generator);
270 return (matches);
293 /* Return the next name which partially matches from the command list. */
/openbsd-current/regress/sys/net/pflog/
H A Dpf.conf18 pass log (matches to $PFLOG_N1) on $LO to 169.254.0.6
28 pass log (matches to $PFLOG_N1) on $LO to fc00::6
/openbsd-current/gnu/llvm/clang/lib/Driver/
H A DSanitizerArgs.cpp206 if (Arg->getOption().matches(SCLOptionID)) {
215 } else if (Arg->getOption().matches(NoSCLOptionID)) {
245 if (Arg->getOption().matches(options::OPT_fsanitize_trap_EQ)) {
257 } else if (Arg->getOption().matches(options::OPT_fno_sanitize_trap_EQ)) {
339 !OptLevel || OptLevel->getOption().matches(options::OPT_O0);
342 if (Arg->getOption().matches(options::OPT_fsanitize_EQ)) {
434 assert(NoRTTIArg->getOption().matches(options::OPT_fno_rtti) &&
478 } else if (Arg->getOption().matches(options::OPT_fno_sanitize_EQ)) {
600 if (Arg->getOption().matches(options::OPT_fsanitize_recover_EQ)) {
615 } else if (Arg->getOption().matches(option
[all...]
/openbsd-current/gnu/llvm/lldb/include/lldb/Symbol/
H A DSymtab.h75 std::vector<uint32_t> &matches,
79 std::vector<uint32_t> &matches);
83 std::vector<uint32_t> &matches);
86 std::vector<uint32_t> &matches);
91 std::vector<uint32_t> &matches);
162 /// sure the cached information matches when cached data is loaded at a later
338 /// matches were found.
/openbsd-current/regress/usr.sbin/syslogd/
H A Dfuncs.pl411 my @matches = $func->($proc, $re);
412 compare(@matches, $num)
413 or die "$name matches '@matches': ",
496 my @matches = grep { /$pattern/ } <$fh>;
500 return wantarray ? @matches : $matches[0];
/openbsd-current/usr.bin/make/
H A Dvarmodifiers.c127 regmatch_t *matches; member in struct:__anon10
292 * Add the word to the buffer if it matches the given pattern.
332 * Add the word to the buffer if it matches the given pattern.
460 /* Anchored at start and beginning of word matches pattern. */
463 /* Also anchored at end and matches to the end (word
617 xrv = regexec(&pat->re, wp, pat->nsub, pat->matches, 0);
623 if (pat->matches[0].rm_so > 0) {
625 Buf_AddChars(buf, pat->matches[0].rm_so, wp);
658 } else if (pat->matches[n].rm_so == -1 &&
659 pat->matches[
[all...]
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/Arch/
H A DM68k.cpp114 if (A->getOption().matches(options::OPT_msoft_float))
116 else if (A->getOption().matches(options::OPT_mhard_float))

Completed in 283 milliseconds

1234567891011>>