Lines Matching refs:CaseSensitive
463 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…
5031 WildcardPattern( std::string const& pattern, CaseSensitive::Choice caseSensitivity );
5037 CaseSensitive::Choice m_caseSensitivity;
11558 CasedString::CasedString( std::string const& str, CaseSensitive::Choice caseSensitivity ) in CasedString()
11563 return m_caseSensitivity == CaseSensitive::No in adjustString()
11568 return m_caseSensitivity == CaseSensitive::No in caseSensitivitySuffix()
11614 …RegexMatcher::RegexMatcher(std::string regex, CaseSensitive::Choice caseSensitivity): m_regex(std:… in RegexMatcher()
11618 if (m_caseSensitivity == CaseSensitive::Choice::No) { in match()
11626 …ches " + ::Catch::Detail::stringify(m_regex) + ((m_caseSensitivity == CaseSensitive::Choice::Yes)?… in describe()
11631 … StdString::EqualsMatcher Equals( std::string const& str, CaseSensitive::Choice caseSensitivity ) { in Equals()
11634 …StdString::ContainsMatcher Contains( std::string const& str, CaseSensitive::Choice caseSensitivity… in Contains()
11637 …StdString::EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity… in EndsWith()
11640 …StdString::StartsWithMatcher StartsWith( std::string const& str, CaseSensitive::Choice caseSensiti… in StartsWith()
11644 … StdString::RegexMatcher Matches(std::string const& regex, CaseSensitive::Choice caseSensitivity) { in Matches()
14338 , m_wildcardPattern( toLower( name ), CaseSensitive::No ) in NamePattern()
15064 CaseSensitive::Choice caseSensitivity ) in WildcardPattern()
15094 return trim( m_caseSensitivity == CaseSensitive::No ? toLower( str ) : str ); in normaliseString()