Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DX86EVEX2VEXTablesEmitter.cpp107 class IsMatch { class
111 IsMatch(const CodeGenInstruction *EVEXInst) : EVEXInst(EVEXInst) {} in IsMatch() function in __anon33aaf22a0111::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 __anon1132bd720111::IsMatch
569 auto Match = find_if(OpcRegInsts, IsMatch(MemInst, Variant)); in run()
/openbsd-src/gnu/llvm/lldb/include/lldb/Utility/
H A DArchSpec.h508 bool IsMatch(const ArchSpec &rhs, MatchType match) const;
512 return IsMatch(rhs, ExactMatch); in IsExactMatch()
517 return IsMatch(rhs, CompatibleMatch); in IsCompatibleMatch()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DELFDumper.cpp329 std::function<bool(const Elf_Shdr &)> IsMatch,
6203 std::function<bool(const Elf_Shdr &)> IsMatch, in getSectionAndRelocations() argument
6206 if (IsMatch(Sec)) in getSectionAndRelocations()
6222 if (IsMatch(*ContentsSec)) in getSectionAndRelocations()
6233 auto IsMatch = [&](const Elf_Shdr &Sec) -> bool { in printRelocatableStackSizes() local
6242 getSectionAndRelocations(IsMatch, StackSizeRelocMap); in printRelocatableStackSizes()
7070 auto IsMatch = [](const Elf_Shdr &Sec) -> bool { in printCGProfile() local
7073 this->getSectionAndRelocations(IsMatch, SecToRelocMap); in printCGProfile()
/openbsd-src/gnu/llvm/lldb/source/Utility/
H A DArchSpec.cpp974 bool ArchSpec::IsMatch(const ArchSpec &rhs, MatchType match) const { in IsMatch() function in ArchSpec
/openbsd-src/gnu/llvm/lldb/source/Target/
H A DPlatform.cpp1168 if (arch.IsMatch(platform_arch, match)) { in IsCompatibleArchitecture()