Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGAddressAnalysis.cpp51 bool IsMatch = in equalBaseIndex() local
53 if (IsMatch) { in equalBaseIndex()
55 IsMatch = A->getMachineCPVal() == B->getMachineCPVal(); in equalBaseIndex()
57 IsMatch = A->getConstVal() == B->getConstVal(); in equalBaseIndex()
59 if (IsMatch) { in equalBaseIndex()
/llvm-project-15.0.7/llvm/utils/TableGen/
H A DX86EVEX2VEXTablesEmitter.cpp107 class IsMatch { class
111 IsMatch(const CodeGenInstruction *EVEXInst) : EVEXInst(EVEXInst) {} in IsMatch() function in __anon2a7031a30111::IsMatch
214 auto Match = llvm::find_if(VEXInsts[Opcode], IsMatch(EVEXInst)); in run()
H A DX86FoldTablesEmitter.cpp258 class IsMatch { class
263 IsMatch(const CodeGenInstruction *Inst, unsigned V) in IsMatch() function in __anone539286b0111::IsMatch
569 auto Match = find_if(OpcRegInsts, IsMatch(MemInst, Variant)); in run()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DELFDumper.cpp330 std::function<bool(const Elf_Shdr &)> IsMatch,
6146 std::function<bool(const Elf_Shdr &)> IsMatch, in getSectionAndRelocations() argument
6149 if (IsMatch(Sec)) in getSectionAndRelocations()
6165 if (IsMatch(*ContentsSec)) in getSectionAndRelocations()
6176 auto IsMatch = [&](const Elf_Shdr &Sec) -> bool { in printRelocatableStackSizes() local
6185 getSectionAndRelocations(IsMatch, StackSizeRelocMap); in printRelocatableStackSizes()
7007 auto IsMatch = [](const Elf_Shdr &Sec) -> bool { in printCGProfile() local
7010 this->getSectionAndRelocations(IsMatch, SecToRelocMap); in printCGProfile()