Searched refs:matches (Results 1 - 25 of 295) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/perl/cpan/autodie/t/
H A Dexec.t11 ok($@->matches('exec'), "exception should match exec");
12 ok($@->matches(':system'), "exception should match :system");
H A Dmkdir.t49 ok($@->matches("mkdir"), "... it's also a mkdir object");
50 ok($@->matches(":filesys"), "... and a filesys object");
60 ok($@->matches("mkdir"), "... it's also a mkdir object");
61 ok($@->matches(":filesys"), "... and a filesys object");
81 ok($@->matches("rmdir"), "... it's also a rmdir object");
82 ok($@->matches(":filesys"), "... and a filesys object");
H A Dlethal.t16 ok($@->matches('open'), "...which matches open");
H A Drepeat.t12 ok($@->matches('open'),"Exception from open");
H A Dunlink.t44 ok($@->matches("unlink"), "... it's also a unlink object");
45 ok($@->matches(":filesys"), "... and a filesys object");
H A Dcrickey.t27 ok($e->matches('open'), "Should be a fair dinkum error from open");
/openbsd-current/gnu/llvm/llvm/tools/llvm-cov/
H A DCoverageFilters.cpp20 bool NameCoverageFilter::matches( function in class:NameCoverageFilter
27 bool NameRegexCoverageFilter::matches( function in class:NameRegexCoverageFilter
37 bool NameAllowlistCoverageFilter::matches( function in class:NameAllowlistCoverageFilter
43 bool RegionCoverageFilter::matches( function in class:RegionCoverageFilter
50 bool LineCoverageFilter::matches( function in class:LineCoverageFilter
61 bool CoverageFilters::matches(const coverage::CoverageMapping &CM, function in class:CoverageFilters
64 if (Filter->matches(CM, Function))
78 bool CoverageFiltersMatchAll::matches( function in class:CoverageFiltersMatchAll
82 if (!Filter->matches(CM, Function))
H A DCoverageFilters.h34 virtual bool matches(const coverage::CoverageMapping &CM, function in class:llvm::CoverageFilter
52 bool matches(const coverage::CoverageMapping &CM,
56 /// Matches functions whose name matches a certain regular expression.
63 bool matches(const coverage::CoverageMapping &CM,
78 bool matches(const coverage::CoverageMapping &CM,
115 bool matches(const coverage::CoverageMapping &CM,
127 bool matches(const coverage::CoverageMapping &CM,
144 bool matches(const coverage::CoverageMapping &CM,
155 bool matches(const coverage::CoverageMapping &CM,
/openbsd-current/sys/dev/pci/drm/
H A Ddrm_panel_orientation_quirks.c152 .matches = {
158 .matches = {
164 .matches = {
170 .matches = {
176 .matches = {
182 .matches = {
188 .matches = {
194 .matches = {
200 .matches = {
206 .matches
[all...]
/openbsd-current/gnu/lib/libreadline/
H A Dcomplete.c87 completing a word would normally display the list of possible matches.
89 It takes three arguments: (char **matches, int num_matches, int max_length)
130 /* If non-zero, non-unique completions always show the list of matches. */
181 /* Pointer to alternative function to create matches.
233 /* If non-zero, then disallow duplicates in the matches. */
236 /* Non-zero means that the results of the matches are to be treated
241 /* Non-zero means that the results of the matches are to be quoted using
250 generated. It is passed a (char**) known as matches in the code below.
252 matching strings. The 1st element (matches[0]) is the maximal
253 substring that is common to all matches
781 char **matches, *temp; local
1012 char *t, **matches, **temp_matches; local
1452 char **matches; local
1600 int matches; local
1912 static char **matches = (char **)0; local
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dcompleter.h24 extern char *readline_line_completion_function (const char *text, int matches);
H A Dinterps.c422 char **matches; local
429 matches = (char **) xmalloc (alloced * sizeof (char *));
437 matches[num_matches] =
440 strcpy (matches[num_matches], interp->name);
444 strcpy (matches[num_matches], interp->name + (word - text));
449 strncpy (matches[num_matches], word, text - word);
450 matches[num_matches][text - word] = '\0';
451 strcat (matches[num_matches], interp->name);
459 xfree (matches);
460 matches
[all...]
/openbsd-current/usr.bin/what/
H A Dwhat.c45 static int matches; variable
63 matches = sflag = 0;
85 exit(matches ? 0 : 1);
90 exit(matches ? 0 : 1);
111 matches++;
129 matches++;
/openbsd-current/lib/libedit/
H A Dfilecomplete.c265 size_t matches; local
267 matches = 0;
269 while ((retstr = (*genfunc) (text, (int)matches)) != NULL) {
271 if (matches + 3 >= match_list_len) {
273 while (matches + 3 >= match_list_len)
284 match_list[++matches] = retstr;
294 for (; which <= matches; which++) {
311 match_list[matches + 1] = NULL;
330 * 'matches' is list of strings, 'num' is number of strings in 'matches',
337 fn_display_match_list(EditLine *el, char **matches, size_t num, size_t width) argument
397 char **matches; local
[all...]
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Dstudytied.t45 ok( $x =~ /n/, qq{"next" matches /n/} );
49 ok( $x =~ /t/, qq{"next" matches /t/} );
/openbsd-current/gnu/llvm/llvm/include/llvm/TableGen/
H A DStringMatcher.h29 /// not exit this code fragment. If nothing matches, execution falls through.
41 const std::vector<StringPair> &matches, raw_ostream &os)
42 : StrVariableName(strVariableName), Matches(matches), OS(os) {}
40 StringMatcher(StringRef strVariableName, const std::vector<StringPair> &matches, raw_ostream &os) argument
/openbsd-current/gnu/llvm/lldb/source/Utility/
H A DRegularExpression.cpp25 llvm::SmallVectorImpl<llvm::StringRef> *matches) const {
28 return m_regex.match(str, matches);
H A DCompletionRequest.cpp71 void CompletionResult::GetMatches(StringList &matches) const {
72 matches.Clear();
74 matches.AppendString(completion.GetCompletion());
H A DStringLexer.cpp44 bool matches = true; local
47 matches = false;
51 if (!matches) {
/openbsd-current/gnu/llvm/lldb/bindings/interface/
H A DSBValueList.i155 matches = []
159 matches.append(value)
160 return matches
165 matches = []
170 matches.append(value)
171 return matches
/openbsd-current/gnu/llvm/lldb/source/Commands/
H A DCommandObjectHelp.cpp101 StringList matches; local
103 cmd_obj = m_interpreter.GetCommandObject(command_name, &matches);
106 StringList matches; local
114 matches.Clear();
124 sub_cmd_obj->GetSubcommandObject(sub_command.c_str(), &matches);
125 if (found_cmd == nullptr || matches.GetSize() > 1) {
136 if (matches.GetSize() >= 2) {
139 size_t num_matches = matches.GetSize();
141 s.Printf("\n\t%s", matches.GetStringAtIndex(match_idx));
165 // Don't use AliasExists here, that only checks exact name matches
[all...]
H A DCommandObjectMultiword.cpp43 StringList *matches) {
49 if (matches)
50 matches->AppendString(sub_cmd);
57 if (matches == nullptr)
58 matches = &local_matches;
60 AddNamesMatchingPartialString(m_subcommand_dict, sub_cmd, *matches);
66 sub_cmd = matches->GetStringAtIndex(0);
77 StringList *matches) {
78 return GetSubcommandSP(sub_cmd, matches).get();
183 StringList matches; local
42 GetSubcommandSP(llvm::StringRef sub_cmd, StringList *matches) argument
76 GetSubcommandObject(llvm::StringRef sub_cmd, StringList *matches) argument
368 GetSubcommandSP(llvm::StringRef sub_cmd, StringList *matches) argument
376 GetSubcommandObject(llvm::StringRef sub_cmd, StringList *matches) argument
[all...]
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/Arch/
H A DLoongArch.cpp32 if (A->getOption().matches(options::OPT_mdouble_float))
34 if (A->getOption().matches(options::OPT_msingle_float))
36 if (A->getOption().matches(options::OPT_msoft_float))
90 if (A->getOption().matches(options::OPT_mdouble_float)) {
93 } else if (A->getOption().matches(options::OPT_msingle_float)) {
H A DSparc.cpp88 if (A->getOption().matches(options::OPT_msoft_float) ||
89 A->getOption().matches(options::OPT_mno_fpu))
91 else if (A->getOption().matches(options::OPT_mhard_float) ||
92 A->getOption().matches(options::OPT_mfpu))
150 if (A->getOption().matches(options::OPT_mfsmuld))
157 if (A->getOption().matches(options::OPT_mpopc))
164 if (A->getOption().matches(options::OPT_mvis))
171 if (A->getOption().matches(options::OPT_mvis2))
178 if (A->getOption().matches(options::OPT_mvis3))
186 if (A->getOption().matches(option
[all...]
H A DSystemZ.cpp31 if (A->getOption().matches(clang::driver::options::OPT_msoft_float))
58 if (A->getOption().matches(options::OPT_mhtm))
65 if (A->getOption().matches(options::OPT_mvx))

Completed in 162 milliseconds

1234567891011>>