Searched refs:matches (Results 26 - 50 of 295) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/lldb/examples/python/
H A Dbsd.py138 matches = []
141 matches.append(obj)
142 return matches
238 matches = archive.find(object_name)
239 if matches:
240 for object in matches:
244 print('error: no object matches "%s" in any archives' % (
254 matches = archive.find(object_name)
255 if matches:
256 for object in matches
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchers.h162 /// Example: \c DeclarationMatcher(anything()) matches all declarations, e.g.,
182 /// matches "int X", but not "int Y".
194 /// matches "typedef int X", but not "using Y = int"
206 /// matches "typedef int X" and "using Y = int"
218 /// matches "using Y = int", but not "typedef int X"
224 /// typeAliasTemplateDecl() matches
234 /// Example matches X but not Y
255 /// Example matches Y but not X
280 /// Example matches Y but not X
332 /// Examples matches \
[all...]
H A DASTMatchersMacros.h30 // return InnerMatcher.matches(*Node.getMemberDecl(), Finder, Builder);
41 // return InnerMatcher.matches(*Node.getMemberDecl(), Finder, Builder);
93 /// The code should return true if 'Node' matches.
100 bool matches(const Type &Node, \
110 inline bool internal::matcher_##DefineMatcher##Matcher::matches( \
127 /// The code should return true if 'Node' matches.
140 bool matches(const Type &Node, \
156 inline bool internal::matcher_##DefineMatcher##OverloadId##Matcher::matches( \
174 /// The code should return true if 'Node' matches.
189 bool matches(cons
[all...]
/openbsd-current/gnu/usr.sbin/mkhybrid/src/
H A Dmatch.h13 int matches __PR((char *fn));
/openbsd-current/gnu/llvm/llvm/utils/
H A Dextract_vplan.py24 matches = re.findall(pattern, sys.stdin.read()) variable
26 for vplan in matches:
/openbsd-current/regress/lib/libcrypto/ige/
H A Digetest.c189 unsigned matches; local
278 matches=0;
281 ++matches;
283 if(matches > sizeof checktext/2+sizeof checktext/100)
285 printf("More than 51%% matches after garbling\n");
289 if(matches < sizeof checktext/2)
308 matches=0;
311 ++matches;
313 if(matches > sizeof checktext/100)
315 printf("More than 1%% matches afte
[all...]
/openbsd-current/usr.bin/mg/
H A Dcscope.c49 TAILQ_HEAD(matches, csmatch) matches;
236 curmatch = TAILQ_FIRST(&r->matches);
246 curmatch = TAILQ_FIRST(&currecord->matches);
266 m = TAILQ_PREV(curmatch, matches, entry);
276 curmatch = TAILQ_LAST(&currecord->matches,
277 matches);
302 curmatch = TAILQ_FIRST(&currecord->matches);
324 curmatch = TAILQ_FIRST(&currecord->matches);
430 ewprintf("No matches wer
[all...]
/openbsd-current/gnu/gcc/gcc/
H A Dgenopinit.c234 /* See if NAME matches one of the patterns we have for the optabs we know
241 int matches = 1; local
246 for (pp += 2, np = name; matches && ! (pp[0] == '$' && pp[1] == ')');
288 matches = 0;
320 matches = 0;
334 if (matches && pp[0] == '$' && pp[1] == ')'
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dgenopinit.c155 /* See if NAME matches one of the patterns we have for the optabs we know
162 int matches = 1; local
167 for (pp += 2, np = name; matches && ! (pp[0] == '$' && pp[1] == ')');
207 matches = 0;
236 matches = 0;
250 if (matches && pp[0] == '$' && pp[1] == ')'
/openbsd-current/gnu/llvm/lldb/utils/lui/
H A Dcommandwin.py72 matches = lldb.SBStringList()
75 self.data, self.el.index, 0, -1, matches)
76 if matches.GetSize() == 2:
77 self.el.content += matches.GetStringAtIndex(0)
85 for m in islice(matches, 1, None):
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/Arch/
H A DMips.cpp158 if (A->getOption().matches(options::OPT_msoft_float))
160 else if (A->getOption().matches(options::OPT_mhard_float))
238 (O.matches(options::OPT_fno_PIC) || O.matches(options::OPT_fno_pic) ||
239 O.matches(options::OPT_fno_PIE) || O.matches(options::OPT_fno_pie));
241 (O.matches(options::OPT_fPIC) || O.matches(options::OPT_fpic) ||
242 O.matches(options::OPT_fPIE) || O.matches(option
[all...]
/openbsd-current/sys/dev/pci/drm/i915/display/
H A Dintel_lvds.c528 .matches = {
536 .matches = {
544 .matches = {
552 .matches = {
560 .matches = {
568 .matches = {
576 .matches = {
584 .matches = {
592 .matches = {
600 .matches
[all...]
H A Dintel_quirks.c99 .matches = {DMI_MATCH(DMI_SYS_VENDOR, "NCR Corporation"),
107 .matches = {DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "AMI Corporation"),
122 .matches = {DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Google"),
130 .matches = {DMI_EXACT_MATCH(DMI_BOARD_VENDOR, "Google"),
/openbsd-current/gnu/usr.bin/perl/
H A Ddoop.c43 Size_t matches = 0; local
59 matches++;
87 matches++;
109 __FILE__, __LINE__, matches));
111 return matches;
133 Size_t matches = 0; local
145 matches++;
155 matches++;
157 matches++;
163 __FILE__, __LINE__, matches));
182 Size_t matches = 0; local
339 Size_t matches = 0; local
411 Size_t matches = 0; local
[all...]
/openbsd-current/regress/sys/net/rdomains/
H A Difalocal.sh32 matches=`route -T $3 -n show | awk -v "ifp=$2" -v "dest=$1" \
33 '$1 == dest && $3 == "UHLl" && $8 == ifp { matches++ } END { print 0 + matches }'`
34 if [ "$matches" -ne "$4" ]; then
36 expected $4 routes to $1 with ifp $2 in rtable $3, found $matches
/openbsd-current/gnu/llvm/lldb/source/Commands/
H A DCommandObjectRegexCommand.cpp62 llvm::SmallVector<llvm::StringRef, 4> matches; local
63 if (pos->regex.Execute(command, &matches)) {
65 SubstituteVariables(pos->command, matches);
/openbsd-current/gnu/usr.bin/binutils/gdb/cli/
H A Dcli-decode.c979 list element which the text matches. It will return NULL if no match at
981 matches are possible; in this case *RESULT_LIST will be set to point to
994 "info" matches without ambiguity, but "a" could be "args" or "address", so
1075 /* If nothing matches, we have a simple failure. */
1491 int matches;
1496 matches = 0;
1504 if (matches == sizeof_matchlist)
1512 matchlist[matches] = (char *)
1515 strcpy (matchlist[matches], ptr->name);
1519 strcpy (matchlist[matches], pt
1487 int matches; local
1559 int matches; local
[all...]
/openbsd-current/gnu/llvm/lldb/bindings/interface/
H A DSBModule.i226 the symbol contexts for all the matches.") FindCompileUnits;
267 matches.") FindFunctions;
311 Allow the number of matches to be limited to max_matches.
421 matches = []
426 matches.append(symbol)
427 return matches
429 matches = []
437 matches.append(symbol)
444 matches.append(symbol)
445 return matches
[all...]
H A DSBCommandInterpreter.i160 lldb::SBStringList &matches);
167 lldb::SBStringList &matches,
/openbsd-current/gnu/llvm/lldb/include/lldb/Utility/
H A DRegularExpression.h28 /// readily used for regular expression matches. Execute() can be called
46 /// are used for regular expression matches.
51 /// \param[out] matches
52 /// A pointer to a SmallVector to hold the matches.
55 /// true if \a string matches the compiled regular expression, false
58 llvm::SmallVectorImpl<llvm::StringRef> *matches = nullptr) const;
/openbsd-current/gnu/usr.bin/perl/t/porting/
H A Dreadme.t30 my @matches = $_ =~ m/F<([^>]+)>/g;
31 for my $file (@matches) {
/openbsd-current/gnu/llvm/llvm/lib/ObjCopy/wasm/
H A DWasmObjcopy.cpp66 return Config.ToRemove.matches(Sec.Name);
87 return Config.ToRemove.matches(Sec.Name) || !isDebugSection(Sec);
95 return !Config.OnlySection.matches(Sec.Name);
102 if (Config.KeepSection.matches(Sec.Name))
/openbsd-current/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallDescription.h77 /// Get the name of the function that this object matches.
94 /// Returns true if the CallEvent is a call to a function that matches
99 bool matches(const CallEvent &Call) const;
101 /// Returns true whether the CallEvent matches on any of the CallDescriptions
107 return CD1.matches(Call);
114 return CD1.matches(Call) || matchesAny(Call, CDs...);
121 /// Returns true if the CallExpr is a call to a function that matches the
138 /// Returns true whether the CallExpr matches on any of the CallDescriptions
196 if (I.first.matches(Call))
226 /// Checkers can efficiently decide if a given CallEvent matches an
[all...]
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/cert/
H A DPutenvWithAutoChecker.cpp42 if (!Putenv.matches(Call))
/openbsd-current/gnu/llvm/lldb/include/lldb/API/
H A DSBCommandInterpreter.h179 // completions. The matches list will contain number_of_completions + 1
181 // position for all the matches. The rest of the elements are the matches.
184 // matches, then you should first check if the first element is non-empty,
192 int max_return_elements, lldb::SBStringList &matches);
196 lldb::SBStringList &matches);
203 lldb::SBStringList &matches, lldb::SBStringList &descriptions);
209 lldb::SBStringList &matches,

Completed in 232 milliseconds

1234567891011>>