Searched refs:matches (Results 76 - 100 of 295) sorted by relevance

1234567891011>>

/openbsd-current/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandCompletions.h69 StringList &matches, TildeExpressionResolver &Resolver);
76 StringList &matches,
H A DCommandObject.h33 // partial string cmd_str, inserts the matches into matches, and returns the
39 StringList &matches, StringList *descriptions = nullptr) {
47 matches.AppendString(iter->first.c_str());
162 StringList *matches = nullptr) {
171 StringList *matches = nullptr) {
37 AddNamesMatchingPartialString( const std::map<std::string, ValueType> &in_map, llvm::StringRef cmd_str, StringList &matches, StringList *descriptions = nullptr) argument
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dgenmultilib109 # matches the multilib_default args.
114 matches=$3
240 # matches. If we are invoked as
247 # In other words, we must output all combinations of matches.
251 # The positional parameters are a list of matches to consider.
282 # include the information in matches, and we have to generate the
328 # Output the line with all appropriate matches.
336 # Output all of the matches now as option and that is the same as that, with
338 # Note, the format of the matches is reversed compared
342 for match in ${matches}; d
[all...]
/openbsd-current/gnu/llvm/llvm/lib/ObjCopy/COFF/
H A DCOFFObjcopy.cpp139 if (!Config.OnlySection.empty() && !Config.OnlySection.matches(Sec.Name))
149 if (Config.ToRemove.matches(Sec.Name))
188 if (Config.SymbolsToRemove.matches(Sym.Name)) {
206 Config.UnneededSymbolsToRemove.matches(Sym.Name))
/openbsd-current/gnu/llvm/clang/lib/StaticAnalyzer/Checkers/
H A DStringChecker.cpp40 if (!TwoParamStdStringCtor.matches(Call))
/openbsd-current/gnu/llvm/lldb/include/lldb/Core/
H A DFileSpecList.h102 /// Find the index of the file in the file spec list that matches \a file
115 /// The index of the file that matches \a file if it is found,
121 /// Find the index of a compatible file in the file spec list that matches \a
124 /// - The file matches exactly (only filename if \a file has no directory)
141 /// The index of the file that matches \a file if it is found,
219 FileSpecList &matches);
/openbsd-current/gnu/llvm/lldb/source/Host/common/
H A DSocket.cpp191 llvm::SmallVector<llvm::StringRef, 3> matches; local
192 if (g_regex.match(host_and_port, &matches)) {
193 ret.hostname = matches[1].str();
197 if (to_integer(matches[2], ret.port, 10))
/openbsd-current/gnu/llvm/lldb/include/lldb/DataFormatters/
H A DFormatManager.h164 FormattersMatchVector matches; local
165 GetPossibleMatches(valobj, valobj.GetCompilerType(), use_dynamic, matches,
167 return matches;
/openbsd-current/gnu/llvm/lldb/source/Commands/
H A DCommandCompletions.cpp228 // Ensure that the function name matches the regex. This is more than
349 // but after that, we're done regardless of any matches.
364 // looking for matches within that directory.
456 bool only_directories, StringList &matches,
462 result.GetMatches(matches);
479 StringList &matches,
481 DiskFilesOrDirectories(partial_file_name, false, matches, Resolver);
491 StringList &matches,
493 DiskFilesOrDirectories(partial_file_name, true, matches, Resolver);
825 StringList matches;
455 DiskFilesOrDirectories(const llvm::Twine &partial_name, bool only_directories, StringList &matches, TildeExpressionResolver &Resolver) argument
478 DiskFiles(const llvm::Twine &partial_file_name, StringList &matches, TildeExpressionResolver &Resolver) argument
490 DiskDirectories(const llvm::Twine &partial_file_name, StringList &matches, TildeExpressionResolver &Resolver) argument
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Option/
H A DOption.cpp92 bool Option::matches(OptSpecifier Opt) const { function in class:Option
96 return Alias.matches(Opt);
104 return Group.matches(Opt);
123 // Always matches.
197 // Always matches.
/openbsd-current/gnu/llvm/llvm/lib/FuzzMutate/
H A DRandomIRBuilder.cpp33 return Pred.matches(Srcs, Inst);
65 // Only sample this load if it really matches the descriptor
66 if (Pred.matches(Srcs, NewLoad))
185 return Pred.matches(Srcs, UndefValue::get(ElemTy));
/openbsd-current/lib/libc/asr/
H A Dgetaddrinfo_async.c51 static const struct match matches[] = { variable in typeref:struct:match
61 #define MATCH_FAMILY(a, b) ((a) == matches[(b)].family || (a) == PF_UNSPEC)
62 #define MATCH_PROTO(a, b) ((a) == matches[(b)].protocol || (a) == 0 || matches[(b)].protocol == 0)
64 #define MATCH_SOCKTYPE(a, b) ((a) == matches[(b)].socktype || ((a) == 0 && \
65 matches[(b)].socktype != SOCK_RAW))
203 for (i = 0; matches[i].family != -1; i++)
208 if (matches[i].family == -1) {
548 for (i = 0; matches[i].family != -1; i++) {
549 if (matches[
[all...]
/openbsd-current/gnu/llvm/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h304 /// Visits all matches that this BoundNodesTree represents.
372 virtual bool matches(const T &Node,
378 return matches(DynNode.getUnchecked<T>(), Finder, Builder);
387 /// Returns true if the matcher matches the provided node.
394 bool matches(const T &Node,
424 /// matches.
428 /// matches, but doesn't stop at the first match.
472 /// Returns true if the matcher matches the given \c DynNode.
473 bool matches(const DynTypedNode &DynNode, ASTMatchFinder *Finder,
476 /// Same as matches(), bu
610 bool matches(const T &Node, function in class:clang::ast_matchers::internal::Matcher
[all...]
/openbsd-current/gnu/llvm/clang/lib/Driver/ToolChains/
H A DClang.cpp367 ExceptionArg->getOption().matches(options::OPT_fcxx_exceptions) ||
368 ExceptionArg->getOption().matches(options::OPT_fexceptions);
406 assert(A.getOption().matches(options::OPT_gN_Group) &&
408 if (A.getOption().matches(options::OPT_g0) ||
409 A.getOption().matches(options::OPT_ggdb0))
411 if (A.getOption().matches(options::OPT_gline_tables_only) ||
412 A.getOption().matches(options::OPT_ggdb1))
414 if (A.getOption().matches(options::OPT_gline_directives_only))
525 bool OmitFP = A && A->getOption().matches(options::OPT_fomit_frame_pointer);
527 A && A->getOption().matches(option
[all...]
H A DHexagon.cpp81 if (HvxEnablingArg->getOption().matches(options::OPT_mno_hexagon_hvx))
91 if (A->getOption().matches(options::OPT_mhexagon_hvx_EQ))
108 else if (A->getOption().matches(options::OPT_mhexagon_hvx_length_EQ))
136 if (A->getOption().matches(FlagOff))
170 if (A->getOption().matches(options::OPT_mlong_calls))
229 if (A->getOption().matches(options::OPT_mhexagon_hvx_ieee_fp))
645 if (A->getOption().matches(options::OPT_O0))
647 if (A->getOption().matches(options::OPT_Ofast) ||
648 A->getOption().matches(options::OPT_O4))
777 return A->getOption().matches(option
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/CPAN/lib/CPAN/
H A DDistroprefs.pm318 sub matches { subroutine
360 if ($pref->matches(\%info)) {
469 =head3 matches
471 if ($pref->matches(\%arg)) { ... }
473 true if this pref matches the passed-in hashref, which must have a value for
/openbsd-current/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObjcopy.cpp281 Config.SymbolsToLocalize.matches(Sym.Name)))
295 !Config.SymbolsToKeepGlobal.matches(Sym.Name) &&
299 if (Config.SymbolsToGlobalize.matches(Sym.Name) &&
304 if (Config.SymbolsToWeaken.matches(Sym.Name) && Sym.Binding != STB_LOCAL)
329 if (Config.SymbolsToKeep.matches(Sym.Name) ||
333 if (Config.SymbolsToRemove.matches(Sym.Name))
353 Config.UnneededSymbolsToRemove.matches(Sym.Name)) &&
375 return Config.ToRemove.matches(Sec.Name);
461 if (Config.OnlySection.matches(Sec.Name))
483 if (Config.KeepSection.matches(Se
[all...]
/openbsd-current/gnu/usr.bin/binutils/gprof/
H A Dcorefile.c74 int matches;
76 matches = fscanf (file, "%[^\n:]", dummy);
77 if (!matches)
107 int matches;
110 matches = fscanf (file, "%[^\n:]", dummy);
111 if (!matches)
73 int matches; local
106 int matches; local
/openbsd-current/gnu/usr.bin/binutils-2.17/gprof/
H A Dcorefile.c74 int matches;
76 matches = fscanf (file, "%[^\n:]", dummy);
77 if (!matches)
107 int matches;
110 matches = fscanf (file, "%[^\n:]", dummy);
111 if (!matches)
73 int matches; local
106 int matches; local
/openbsd-current/gnu/llvm/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp27 return InnerMatcher.matches(*Range, Finder, Builder);
39 return InnerMatcher.matches(*Result, Finder, Builder);
46 return stmt().matches(Node, Finder, Builder);
59 // The 'ConditionalOperator' matches on `<anything> ? <expr> : <expr>`.
79 return ComplexMatcher.matches(*Exp, Finder, Builder);
88 if (InnerMatcher.matches(*Arg, Finder, &Result)) {
105 return InnerMatcher.matches(*Node.getControllingExpr(), Finder, Builder);
450 // Keep the ordering for the specific initialization matches to happen first,
/openbsd-current/gnu/llvm/lldb/tools/driver/
H A DDriver.cpp323 if (arg->getOption().matches(OPT_source_on_crash)) {
330 if (arg->getOption().matches(OPT_one_line_on_crash)) {
337 if (arg->getOption().matches(OPT_source)) {
344 if (arg->getOption().matches(OPT_source_before_file)) {
351 if (arg->getOption().matches(OPT_one_line)) {
358 if (arg->getOption().matches(OPT_one_line_before_file)) {
/openbsd-current/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerPlatform.cpp417 StringList matches; local
420 CommandCompletions::DiskDirectories(path, matches, resolver);
422 CommandCompletions::DiskFiles(path, matches, resolver);
427 std::sort(matches.begin(), matches.end());
428 for (const auto &match : matches) {
/openbsd-current/gnu/llvm/lldb/source/Target/
H A DLanguage.cpp415 TypeList matches; local
417 matches);
418 for (const auto &match : matches.Types()) {
/openbsd-current/gnu/gcc/gcc/
H A Dgenmultilib114 # matches the multilib_default args.
119 matches=$3
265 # matches. If we are invoked as
272 # In other words, we must output all combinations of matches.
276 # The positional parameters are a list of matches to consider.
307 # include the information in matches, and we have to generate the
361 # Output the line with all appropriate matches.
369 # Output all of the matches now as option and that is the same as that, with
371 # Note, the format of the matches is reversed compared
375 for match in ${matches}; d
[all...]
H A Drecog.h46 int matches; member in struct:operand_alternative
49 matches this one. */

Completed in 429 milliseconds

1234567891011>>