Home
last modified time | relevance | path

Searched refs:find_insensitive (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringRef.h290 [[nodiscard]] size_t find_insensitive(char C, size_t From = 0) const;
326 [[nodiscard]] size_t find_insensitive(StringRef Str, size_t From = 0) const;
422 return find_insensitive(Other) != npos; in contains_insensitive()
428 return find_insensitive(C) != npos; in contains_insensitive()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DStringRef.cpp55 size_t StringRef::find_insensitive(char C, size_t From) const { in find_insensitive() function in StringRef
191 size_t StringRef::find_insensitive(StringRef Str, size_t From) const { in find_insensitive() function in StringRef
H A DUnicodeNameToCodepoint.cpp
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp1086 IgnoreCase ? Buffer.find_insensitive(FixedStr) : Buffer.find(FixedStr); in match()
/freebsd/contrib/llvm-project/llvm/tools/llvm-profdata/
H A Dllvm-profdata.cpp1127 PrefixPos = Name.find_insensitive(NamePrefix); in adjustInstrProfile()