Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DVirtualFileSystem.h967 if ((CaseSensitive ? lhs == rhs : lhs.equals_insensitive(rhs))) in pathComponentMatches()
993 bool CaseSensitive = is_style_posix(sys::path::Style::native); variable
1119 void setCaseSensitivity(bool CaseSensitive) { in setCaseSensitivity() argument
1120 IsCaseSensitive = CaseSensitive; in setCaseSensitivity()
/freebsd/contrib/bsnmp/tests/
H A Dcatch.hpp463 struct CaseSensitive { enum Choice { argument
3492 CasedString( std::string const& str, CaseSensitive::Choice caseSensitivity );
3496 CaseSensitive::Choice m_caseSensitivity;
3526 RegexMatcher( std::string regex, CaseSensitive::Choice 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…
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp2097 if (!parseScalarBool(I.getValue(), FS->CaseSensitive)) in parse()