Home
last modified time | relevance | path

Searched refs:CaseSensitive (Results 1 – 3 of 3) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h943 if ((CaseSensitive ? lhs.equals(rhs) : lhs.equals_insensitive(rhs))) in pathComponentMatches()
969 bool CaseSensitive = is_style_posix(sys::path::Style::native); variable
1081 void setCaseSensitivity(bool CaseSensitive) { in setCaseSensitivity() argument
1082 IsCaseSensitive = CaseSensitive; in setCaseSensitivity()
/freebsd-14.2/contrib/bsnmp/tests/
H A Dcatch.hpp463 struct CaseSensitive { enum Choice { argument
3496 CaseSensitive::Choice m_caseSensitivity;
3532 CaseSensitive::Choice m_caseSensitivity;
3540 …ng::EqualsMatcher Equals( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3541 …ContainsMatcher Contains( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3542 …EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3543 …tsWithMatcher StartsWith( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3544 …::RegexMatcher Matches( std::string const& regex, CaseSensitive::Choice caseSensitivity = CaseSens…
5037 CaseSensitive::Choice m_caseSensitivity;
11563 return m_caseSensitivity == CaseSensitive::No in adjustString()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp2066 if (!parseScalarBool(I.getValue(), FS->CaseSensitive)) in parse()