Home
last modified time | relevance | path

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

/src/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()
/src/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()
/src/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()
/src/contrib/llvm-project/llvm/utils/TableGen/
H A DX86InstrMappingEmitter.cpp122 class IsMatch { class
126 IsMatch(const CodeGenInstruction *OldInst) : OldInst(OldInst) {} in IsMatch() function in __anon0c0f64ac0111::IsMatch
232 auto Match = llvm::find_if(CompressedInsts[Opcode], IsMatch(Inst)); in emitCompressEVEXTable()
H A DX86FoldTablesEmitter.cpp333 class IsMatch { class
340 IsMatch(const CodeGenInstruction *Inst, bool IsBroadcast, unsigned V) in IsMatch() function in __anon2a91c1300111::IsMatch
698 find_if(OpcRegInsts, IsMatch(MemInst, /*IsBroadcast=*/false, Variant)); in run()
714 IsMatch(MemInst, /*IsBroadcast=*/true, Variant)); in run()
/src/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()
/src/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp942 std::function<Expected<bool>(const Elf_Shdr &)> IsMatch) const { in getSectionAndRelocations()
946 Expected<bool> DoesSectionMatch = IsMatch(Sec); in getSectionAndRelocations()
969 Expected<bool> DoesRelTargetMatch = IsMatch(*ContentsSec); in getSectionAndRelocations()
H A DELFObjectFile.cpp889 auto IsMatch = [&](const Elf_Shdr &Sec) -> Expected<bool> { in readBBAddrMapImpl() local
909 EF.getSectionAndRelocations(IsMatch); in readBBAddrMapImpl()
/src/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp6751 auto IsMatch = [&](const Elf_Shdr &Sec) -> bool { in printRelocatableStackSizes() local
6762 StackSizeRelocMapOrErr = Obj.getSectionAndRelocations(IsMatch); in printRelocatableStackSizes()
7709 auto IsMatch = [](const Elf_Shdr &Sec) -> bool { in printCGProfile() local
7714 this->Obj.getSectionAndRelocations(IsMatch); in printCGProfile()
7762 auto IsMatch = [](const Elf_Shdr &Sec) -> bool { in printBBAddrMaps() local
7766 this->Obj.getSectionAndRelocations(IsMatch); in printBBAddrMaps()
/src/contrib/llvm-project/llvm/include/llvm/Object/
H A DELF.h521 std::function<Expected<bool>(const Elf_Shdr &)> IsMatch) const;
/src/contrib/llvm-project/lldb/source/Utility/
H A DArchSpec.cpp972 bool ArchSpec::IsMatch(const ArchSpec &rhs, MatchType match) const { in IsMatch() function in ArchSpec
/src/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1102 if (arch.IsMatch(platform_arch, match)) { in IsCompatibleArchitecture()