Home
last modified time | relevance | path

Searched refs:IsMatch (Results 1 – 13 of 13) sorted by relevance

/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h86 auto IsMatch = [&](const std::string &Other) { in hasFlag()
89 return std::any_of(Args.begin(), endMutableArgs(), IsMatch); in hasFlag()
97 auto IsMatch = [&](const std::string &Other) { in getFlagValue()
101 auto j = std::find_if(Args.begin(), i, IsMatch); in getFlagValue()
117 auto IsMatch = [&](const std::string &Other) { in removeFlag()
121 Args.erase(std::remove_if(Args.begin(), i, IsMatch), i); in removeFlag()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp54 bool IsMatch = in equalBaseIndex() local
56 if (IsMatch) { in equalBaseIndex()
58 IsMatch = A->getMachineCPVal() == B->getMachineCPVal(); in equalBaseIndex()
60 IsMatch = A->getConstVal() == B->getConstVal(); in equalBaseIndex()
62 if (IsMatch) { in equalBaseIndex()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArchSpec.h494 bool IsMatch(const ArchSpec &rhs, MatchType match) const;
498 return IsMatch(rhs, ExactMatch); in IsExactMatch()
503 return IsMatch(rhs, CompatibleMatch); in IsCompatibleMatch()
/freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/
H A DX86CompressEVEXTablesEmitter.cpp111 class IsMatch { class
115 IsMatch(const CodeGenInstruction *OldInst) : OldInst(OldInst) {} in IsMatch() function in __anondb19dcf00111::IsMatch
213 auto Match = llvm::find_if(CompressedInsts[Opcode], IsMatch(Inst)); in run()
H A DX86FoldTablesEmitter.cpp336 class IsMatch { class
343 IsMatch(const CodeGenInstruction *Inst, bool IsBroadcast, unsigned V) in IsMatch() function in __anonb418af310111::IsMatch
715 find_if(OpcRegInsts, IsMatch(MemInst, /*IsBroadcast=*/false, Variant)); in run()
731 IsMatch(MemInst, /*IsBroadcast=*/true, Variant)); in run()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h100 bool IsMatch(const std::shared_ptr<Formatter> &formatter_sp) const { in IsMatch() function
H A DFormattersContainer.h196 if (candidate.IsMatch(entry) == false) { in Get()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp840 std::function<Expected<bool>(const Elf_Shdr &)> IsMatch) const { in getSectionAndRelocations()
844 Expected<bool> DoesSectionMatch = IsMatch(Sec); in getSectionAndRelocations()
867 Expected<bool> DoesRelTargetMatch = IsMatch(*ContentsSec); in getSectionAndRelocations()
H A DELFObjectFile.cpp797 auto IsMatch = [&](const Elf_Shdr &Sec) -> Expected<bool> { in readBBAddrMapImpl() local
814 EF.getSectionAndRelocations(IsMatch); in readBBAddrMapImpl()
/freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp6604 auto IsMatch = [&](const Elf_Shdr &Sec) -> bool { in printRelocatableStackSizes() local
6615 StackSizeRelocMapOrErr = Obj.getSectionAndRelocations(IsMatch); in printRelocatableStackSizes()
7496 auto IsMatch = [](const Elf_Shdr &Sec) -> bool { in printCGProfile() local
7501 this->Obj.getSectionAndRelocations(IsMatch); in printCGProfile()
7548 auto IsMatch = [](const Elf_Shdr &Sec) -> bool { in printBBAddrMaps() local
7553 this->Obj.getSectionAndRelocations(IsMatch); in printBBAddrMaps()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h473 std::function<Expected<bool>(const Elf_Shdr &)> IsMatch) const;
/freebsd-14.2/contrib/llvm-project/lldb/source/Utility/
H A DArchSpec.cpp972 bool ArchSpec::IsMatch(const ArchSpec &rhs, MatchType match) const { in IsMatch() function in ArchSpec
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1172 if (arch.IsMatch(platform_arch, match)) { in IsCompatibleArchitecture()