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

123456789

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObject.h31 // partial string cmd_str, inserts the matches into matches, and returns the
37 StringList &matches, StringList *descriptions = nullptr) {
45 matches.AppendString(iter->first.c_str());
157 StringList *matches = nullptr) {
162 StringList *matches = nullptr) {
35 AddNamesMatchingPartialString( const std::map<std::string, ValueType> &in_map, llvm::StringRef cmd_str, StringList &matches, StringList *descriptions = nullptr) argument
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DCOFFObjcopy.cpp97 if (!Config.OnlySection.empty() && !Config.OnlySection.matches(Sec.Name))
107 if (Config.ToRemove.matches(Sec.Name))
147 if (Config.SymbolsToRemove.matches(Sym.Name)) {
166 Config.UnneededSymbolsToRemove.matches(Sym.Name))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Option/
H A DOption.cpp93 bool Option::matches(OptSpecifier Opt) const { function in class:Option
97 return Alias.matches(Opt);
105 return Group.matches(Opt);
123 // Always matches.
195 // Always matches.
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBCommandInterpreter.cpp331 int match_start_point, int max_return_elements, SBStringList &matches) {
336 max_return_elements, matches);
341 matches, dummy_descriptions);
346 int match_start_point, int max_return_elements, SBStringList &matches,
353 max_return_elements, matches, descriptions);
408 matches.AppendList(temp_matches_list);
416 int max_return_elements, SBStringList &matches,
423 max_return_elements, matches, descriptions);
429 matches, descriptions);
436 lldb::SBStringList &matches) {
329 HandleCompletion( const char *current_line, const char *cursor, const char *last_char, int match_start_point, int max_return_elements, SBStringList &matches) argument
344 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
414 HandleCompletionWithDescriptions( const char *current_line, uint32_t cursor_pos, int match_start_point, int max_return_elements, SBStringList &matches, SBStringList &descriptions) argument
432 HandleCompletion(const char *current_line, uint32_t cursor_pos, int match_start_point, int max_return_elements, lldb::SBStringList &matches) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatManager.h171 FormattersMatchVector matches; local
174 use_dynamic, matches, false, false, false, true);
175 return matches;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp270 "directly into a function whose name matches the "
847 const char *cmd_str, bool include_aliases, StringList &matches,
849 AddNamesMatchingPartialString(m_command_dict, cmd_str, matches,
853 AddNamesMatchingPartialString(m_alias_dict, cmd_str, matches,
857 return matches.GetSize();
862 bool exact, StringList *matches,
887 // We will only get into here if we didn't find any exact matches.
892 if (matches == nullptr)
893 matches = &local_matches;
901 // empty CommandObjectSP and the list of matches
846 GetCommandNamesMatchingPartialString( const char *cmd_str, bool include_aliases, StringList &matches, StringList &descriptions) argument
861 GetCommandSP(llvm::StringRef cmd_str, bool include_aliases, bool exact, StringList *matches, StringList *descriptions) const argument
1056 GetCommandObject(llvm::StringRef cmd_str, StringList *matches, StringList *descriptions) const argument
1102 StringList matches; local
2963 StringList matches; local
[all...]
/freebsd-11-stable/sys/dev/drm2/
H A Ddrm_os_freebsd.c299 for (i = 0; i < nitems(dsi->matches); i++) {
300 slot = dsi->matches[i].slot;
307 !strcmp(hw_vendor, dsi->matches[i].substr)) {
316 !strcmp(hw_prod, dsi->matches[i].substr)) {
340 for (res = false, dsi = sysid; dsi->matches[0].slot != 0 ; dsi++) {
/freebsd-11-stable/usr.bin/whereis/
H A Dwhereis.c341 * matches a possible CVS subdirectory.
344 * avoid false matches.
388 regmatch_t matches[2]; local
506 matches, 0) == 0 &&
507 (rlen = matches[1].rm_eo -
508 matches[1].rm_so) > 0) {
518 buf + matches[1].rm_so,
/freebsd-11-stable/contrib/xz/src/liblzma/lzma/
H A Dlzma_encoder_optimum_normal.c147 // For matches with distance >= FULL_DISTANCES, add the price
282 len_main = mf_find(mf, &matches_count, coder->matches);
324 *back_res = coder->matches[matches_count - 1].dist + REPS;
417 while (len > coder->matches[i].len)
421 const uint32_t dist = coder->matches[i].dist;
433 if (len == coder->matches[i].len)
697 while (new_len > coder->matches[matches_count].len)
700 coder->matches[matches_count++].len = new_len;
712 while (start_len > coder->matches[i].len)
716 const uint32_t cur_back = coder->matches[
[all...]
H A Dlzma_encoder_private.h82 lzma_match matches[MATCH_LEN_MAX + 1]; member in struct:lzma_lzma1_encoder_s
84 /// Number of match candidates in matches[]
/freebsd-11-stable/contrib/llvm-project/clang/lib/ASTMatchers/
H A DASTMatchFinder.cpp9 // Implements an algorithm to efficiently search for matches on AST nodes.
10 // Uses memoization to support recursive matches like HasDescendant.
84 // Creates an AST visitor that matches 'matcher' on all children or
299 // Sets 'Matched' to true if 'Matcher' matches 'Node' and:
311 if (Matcher->matches(ast_type_traits::DynTypedNode::create(Node), Finder,
319 if (Matcher->matches(ast_type_traits::DynTypedNode::create(Node), Finder,
420 // find out whether the type name matches.
536 // result callback for every node that matches.
608 if (MP.first.matches(Node, this, &Builder)) {
632 if (MP.first.matches(DynNod
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp359 Config.SymbolsToLocalize.matches(Sym.Name)))
373 !Config.SymbolsToKeepGlobal.matches(Sym.Name) &&
377 if (Config.SymbolsToGlobalize.matches(Sym.Name) &&
381 if (Config.SymbolsToWeaken.matches(Sym.Name) && Sym.Binding == STB_GLOBAL)
406 if (Config.SymbolsToKeep.matches(Sym.Name) ||
420 if (Config.SymbolsToRemove.matches(Sym.Name))
424 Config.UnneededSymbolsToRemove.matches(Sym.Name)) &&
445 return Config.ToRemove.matches(Sec.Name);
531 if (Config.OnlySection.matches(Sec.Name))
553 if (Config.KeepSection.matches(Se
[all...]
/freebsd-11-stable/sys/dev/pccard/
H A Dpccard.c369 int matches; local
396 matches = 1;
407 if (matches && ent->pp_vendor != PCCARD_VENDOR_ANY &&
409 matches = 0;
410 if (matches && ent->pp_product != PCCARD_PRODUCT_ANY &&
412 matches = 0;
413 if (matches && ent->pp_cis[0] &&
416 matches = 0;
417 if (matches && ent->pp_cis[1] &&
420 matches
[all...]
/freebsd-11-stable/usr.sbin/iostat/
H A Diostat.c183 struct devstat_match *matches; local
197 matches = NULL;
241 if (devstat_buildmatch(optarg, &matches,
282 * Make sure that the userland devstat version matches the kernel
380 cur.dinfo->devices, num_devices, matches,
538 num_devices, matches,
575 num_devices, matches,
/freebsd-11-stable/sys/compat/freebsd32/
H A Dfreebsd32_ioctl.c279 pci.matches = NULL;
286 pci.matches = (struct pci_conf *)addr;
312 for (i = 0, pcp = pci.matches,
313 pc32p = (struct pci_conf32 *)PTRIN(pci32.matches);
343 if (pci.matches)
344 copyout_unmap(td, (vm_offset_t)pci.matches, pci.match_buf_len);
/freebsd-11-stable/usr.sbin/kbdmap/
H A Dkbdmap.c233 int a, b, matches; local
238 matches = sscanf(line,
241 if (matches==3) {
616 int matches; local
629 matches = sscanf(p, "%64[^:]:%64[^:]:%256[^:\n]",
631 if (matches == 3) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandCompletions.cpp111 // but after that, we're done regardless of any matches.
126 // looking for matches within that directory.
218 bool only_directories, StringList &matches,
224 result.GetMatches(matches);
241 StringList &matches,
243 DiskFilesOrDirectories(partial_file_name, false, matches, Resolver);
253 StringList &matches,
255 DiskFilesOrDirectories(partial_file_name, true, matches, Resolver);
449 // Ensure that the function name matches the regex. This is more than a
217 DiskFilesOrDirectories(const llvm::Twine &partial_name, bool only_directories, StringList &matches, TildeExpressionResolver &Resolver) argument
240 DiskFiles(const llvm::Twine &partial_file_name, StringList &matches, TildeExpressionResolver &Resolver) argument
252 DiskDirectories(const llvm::Twine &partial_file_name, StringList &matches, TildeExpressionResolver &Resolver) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DLanguage.cpp401 TypeList matches; local
403 matches);
404 for (const auto &match : matches.Types()) {
/freebsd-11-stable/contrib/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. */
/freebsd-11-stable/sbin/devd/
H A Ddevd.hh115 * action is used to fork a process. It matches everything.
136 bool matches(config &) const;
/freebsd-11-stable/usr.bin/grep/
H A Dgrep.h118 * Parsing context; used to hold things like matches made and
122 regmatch_t matches[MAX_MATCHES]; /* Matches made */ member in struct:parsec
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyCommon.h67 inline bool matches(const til::SExpr *E1, const til::SExpr *E2) { function in namespace:clang::threadSafety::sx
69 // It matches everything for the purpose of checking locks, but not
292 bool matches(const CapabilityExpr &other) const { function in class:clang::threadSafety::CapabilityExpr
293 return (Negated == other.Negated) && sx::matches(CapExpr, other.CapExpr);
297 return isUniversal() || matches(CapE);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Option/
H A DOption.h188 /// matches - Predicate for whether this option is part of the
191 /// Note that matches against options which are an alias should never be
194 bool matches(OptSpecifier ID) const;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DCompletionRequest.h67 /// Adds all collected completion matches to the given list.
70 void GetMatches(StringList &matches) const;

Completed in 250 milliseconds

123456789