Home
last modified time | relevance | path

Searched refs:Glob (Results 1 – 25 of 29) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DSpecialCaseList.cpp57 auto Glob = std::make_unique<Matcher::Glob>(); in insert() local
58 Glob->Name = Pattern.str(); in insert()
59 Glob->LineNo = LineNumber; in insert()
62 if (auto Err = GlobPattern::create(Glob->Name, /*MaxSubPatterns=*/1024) in insert()
63 .moveInto(Glob->Pattern)) in insert()
65 Globs.push_back(std::move(Glob)); in insert()
70 for (const auto &Glob : reverse(Globs)) in match() local
71 if (Glob->Pattern.match(Query)) in match()
72 return Glob->LineNo; in match()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/
H A DUtils.cpp163 llvm::Expected<Regex> llvm::MachO::createRegexFromGlob(StringRef Glob) { in createRegexFromGlob() argument
166 for (unsigned i = 0; i < Glob.size(); ++i) { in createRegexFromGlob()
167 char C = Glob[i]; in createRegexFromGlob()
173 const char *PrevChar = i > 0 ? Glob.data() + i - 1 : nullptr; in createRegexFromGlob()
176 while (i < Glob.size() && Glob[i] == '*') { in createRegexFromGlob()
180 const char *NextChar = i < Glob.size() ? Glob.data() + i : nullptr; in createRegexFromGlob()
/freebsd/crypto/openssl/util/perl/OpenSSL/
H A DGlob.pm1 package OpenSSL::Glob;
6 use File::Glob;
16 goto &File::Glob::bsd_glob if $^O ne "VMS";
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DSpecialCaseList.h130 struct Glob { struct
136 Glob(Glob &&) = delete;
137 Glob() = default;
140 std::vector<std::unique_ptr<Matcher::Glob>> Globs;
/freebsd/contrib/llvm-project/lld/Common/
H A DStrings.cpp32 Expected<GlobPattern> Glob = GlobPattern::create(Pattern); in SingleStringMatcher() local
33 if (!Glob) { in SingleStringMatcher()
34 error(toString(Glob.takeError()) + ": " + Pattern); in SingleStringMatcher()
37 GlobPatternMatcher = *Glob; in SingleStringMatcher()
/freebsd/crypto/openssl/test/recipes/
H A Dfuzz.pl11 use OpenSSL::Glob;
H A D80-test_policy_tree.t17 use OpenSSL::Glob;
H A D15-test_dsaparam.t15 use OpenSSL::Glob;
H A D20-test_dhparam_check.t14 use OpenSSL::Glob;
H A D40-test_rehash.t16 use OpenSSL::Glob;
H A D15-test_ecparam.t16 use OpenSSL::Glob;
H A D80-test_ssl_new.t19 use OpenSSL::Glob;
H A D15-test_ml_dsa_codecs.t17 use OpenSSL::Glob;
H A D03-test_fipsinstall.t14 use OpenSSL::Glob;
H A D15-test_ml_kem_codecs.t17 use OpenSSL::Glob;
H A D20-test_cli_fips.t15 use OpenSSL::Glob;
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DAddressResolver.h35 enum MatchType { Exact, Regexp, Glob }; enumerator
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DDiagnostic.cpp555 for (const auto &Glob : DiagSectionMatcher->Globs) in processSections() local
556 if (Glob->Name == DiagName) { in processSections()
557 DiagLine = Glob->LineNo; in processSections()
631 for (const auto &Glob : Matcher.Globs) { in globsMatches() local
632 if (Glob->Name.size() < LongestMatch.size()) in globsMatches()
634 if (!Glob->Pattern.match(FilePath)) in globsMatches()
636 LongestMatch = Glob->Name; in globsMatches()
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DUtils.h83 LLVM_ABI llvm::Expected<llvm::Regex> createRegexFromGlob(llvm::StringRef Glob);
/freebsd/contrib/llvm-project/llvm/lib/InterfaceStub/
H A DIFSHandler.cpp351 for (StringRef Glob : Exclude) { in filterIFSSyms() local
352 Expected<llvm::GlobPattern> PatternOrErr = llvm::GlobPattern::create(Glob); in filterIFSSyms()
/freebsd/crypto/openssl/test/
H A Drun_tests.pl28 use OpenSSL::Glob;
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpoint.h88 enum MatchType { Exact, Regexp, Glob }; enumerator
/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverName.cpp292 case Breakpoint::Glob: in SearchCallback()
/freebsd/crypto/openssh/contrib/suse/
H A Dopenssh.spec85 - Glob manpages to catch compressed files
/freebsd/contrib/tcsh/
H A DNewThings149 * Glob-expand, on arguments.

12