Home
last modified time | relevance | path

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

/freebsd/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/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/contrib/llvm-project/llvm/utils/TableGen/
H A DX86EVEX2VEXTablesEmitter.cpp
H A DX86InstrMappingEmitter.cpp121 class IsMatch { class
125 IsMatch(const CodeGenInstruction *OldInst) : OldInst(OldInst) {} in IsMatch() function in __anon4f70c9770111::IsMatch
232 auto Match = llvm::find_if(Insts, IsMatch(Inst)); in emitCompressEVEXTable()
H A DX86FoldTablesEmitter.cpp333 class IsMatch { class
340 IsMatch(const CodeGenInstruction *Inst, bool IsBroadcast, unsigned V) in IsMatch() function in __anon982d773b0111::IsMatch
698 find_if(OpcRegInsts, IsMatch(MemInst, /*IsBroadcast=*/false, Variant)); in run()
714 IsMatch(MemInst, /*IsBroadcast=*/true, Variant)); in run()
H A DGlobalISelCombinerEmitter.cpp1198 bool IsMatch) { in checkSemantics() argument
1206 if (IsMatch && &Op != &IP.operands_back()) { in checkSemantics()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DArchSpec.h507 bool IsMatch(const ArchSpec &rhs, MatchType match) const;
511 return IsMatch(rhs, ExactMatch); in IsExactMatch()
516 return IsMatch(rhs, CompatibleMatch); in IsCompatibleMatch()
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h103 bool IsMatch(const std::shared_ptr<Formatter> &formatter_sp) const { in IsMatch() function
H A DFormattersContainer.h196 if (candidate.IsMatch(entry)) in Get()
/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp987 std::function<Expected<bool>(const Elf_Shdr &)> IsMatch) const { in getSectionAndRelocations()
991 Expected<bool> DoesSectionMatch = IsMatch(Sec); in getSectionAndRelocations()
1014 Expected<bool> DoesRelTargetMatch = IsMatch(*ContentsSec); in getSectionAndRelocations()
H A DELFObjectFile.cpp934 auto IsMatch = [&](const Elf_Shdr &Sec) -> Expected<bool> { in readBBAddrMapImpl() local
953 EF.getSectionAndRelocations(IsMatch); in readBBAddrMapImpl()
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp6853 auto IsMatch = [&](const Elf_Shdr &Sec) -> bool { in printRelocatableStackSizes() local
6864 StackSizeRelocMapOrErr = Obj.getSectionAndRelocations(IsMatch); in printRelocatableStackSizes()
7824 auto IsMatch = [](const Elf_Shdr &Sec) -> bool { in printCGProfile() local
7829 this->Obj.getSectionAndRelocations(IsMatch); in printCGProfile()
7877 auto IsMatch = [](const Elf_Shdr &Sec) -> bool { in printBBAddrMaps() local
7881 this->Obj.getSectionAndRelocations(IsMatch); in printBBAddrMaps()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h527 std::function<Expected<bool>(const Elf_Shdr &)> IsMatch) const;
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DArchSpec.cpp998 bool ArchSpec::IsMatch(const ArchSpec &rhs, MatchType match) const { in IsMatch() function in ArchSpec
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1107 if (arch.IsMatch(platform_arch, match)) { in IsCompatibleArchitecture()