Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerCommand.h85 auto IsMatch = [&](const std::string &Other) { in hasFlag()
88 return std::any_of(Args.begin(), endMutableArgs(), IsMatch); in hasFlag()
96 auto IsMatch = [&](const std::string &Other) { in getFlagValue()
100 auto j = std::find_if(Args.begin(), i, IsMatch); in getFlagValue()
116 auto IsMatch = [&](const std::string &Other) { in removeFlag()
120 Args.erase(std::remove_if(Args.begin(), i, IsMatch), i); in removeFlag()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp50 bool IsMatch = in equalBaseIndex() local
52 if (IsMatch) { in equalBaseIndex()
54 IsMatch = A->getMachineCPVal() == B->getMachineCPVal(); in equalBaseIndex()
56 IsMatch = A->getConstVal() == B->getConstVal(); in equalBaseIndex()
58 if (IsMatch) { in equalBaseIndex()
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DX86EVEX2VEXTablesEmitter.cpp104 class IsMatch { class
108 IsMatch(const CodeGenInstruction *EVEXInst) : EVEXInst(EVEXInst) {} in IsMatch() function in __anonf69deda70111::IsMatch
243 auto Match = llvm::find_if(VEXInsts[Opcode], IsMatch(EVEXInst)); in run()
H A DX86FoldTablesEmitter.cpp43 class IsMatch;
315 class IsMatch { class
319 IsMatch(const CodeGenInstruction *Inst, const RecordKeeper &Records) in IsMatch() function in __anonf081826f0111::IsMatch
631 auto Match = find_if(OpcRegInsts, IsMatch(MemInst, Records)); in run()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/DataFormatters/
H A DFormatClasses.h62 bool IsMatch(const std::shared_ptr<Formatter> &formatter_sp) const { in IsMatch() function
H A DFormattersContainer.h219 if (candidate.IsMatch(entry) == false) { in Get()
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DELFDumper.cpp325 std::function<bool(const Elf_Shdr &)> IsMatch,
5917 std::function<bool(const Elf_Shdr &)> IsMatch, in getSectionAndRelocations() argument
5920 if (IsMatch(Sec)) in getSectionAndRelocations()
5936 if (IsMatch(*ContentsSec)) in getSectionAndRelocations()
5947 auto IsMatch = [&](const Elf_Shdr &Sec) -> bool { in printRelocatableStackSizes() local
5956 getSectionAndRelocations(IsMatch, StackSizeRelocMap); in printRelocatableStackSizes()
6769 auto IsMatch = [](const Elf_Shdr &Sec) -> bool { in printCGProfile() local
6772 this->getSectionAndRelocations(IsMatch, SecToRelocMap); in printCGProfile()