• Home
  • Raw
  • Download

Lines Matching refs:CaseSensitive

482     struct CaseSensitive { enum Choice {  struct
3536 CasedString( std::string const& str, CaseSensitive::Choice caseSensitivity );
3540 CaseSensitive::Choice m_caseSensitivity;
3570 RegexMatcher( std::string regex, CaseSensitive::Choice caseSensitivity );
3576 CaseSensitive::Choice m_caseSensitivity;
3584 …ng::EqualsMatcher Equals( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3585 …ContainsMatcher Contains( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3586 …EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3587 …tsWithMatcher StartsWith( std::string const& str, CaseSensitive::Choice caseSensitivity = CaseSens…
3588 …::RegexMatcher Matches( std::string const& regex, CaseSensitive::Choice caseSensitivity = CaseSens…
5081 WildcardPattern( std::string const& pattern, CaseSensitive::Choice caseSensitivity );
5087 CaseSensitive::Choice m_caseSensitivity;
11650 CasedString::CasedString( std::string const& str, CaseSensitive::Choice caseSensitivity ) in CasedString()
11655 return m_caseSensitivity == CaseSensitive::No in adjustString()
11660 return m_caseSensitivity == CaseSensitive::No in caseSensitivitySuffix()
11706 …RegexMatcher::RegexMatcher(std::string regex, CaseSensitive::Choice caseSensitivity): m_regex(std:… in RegexMatcher()
11710 if (m_caseSensitivity == CaseSensitive::Choice::No) { in match()
11718 …ches " + ::Catch::Detail::stringify(m_regex) + ((m_caseSensitivity == CaseSensitive::Choice::Yes)?… in describe()
11723 … StdString::EqualsMatcher Equals( std::string const& str, CaseSensitive::Choice caseSensitivity ) { in Equals()
11726 …StdString::ContainsMatcher Contains( std::string const& str, CaseSensitive::Choice caseSensitivity… in Contains()
11729 …StdString::EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity… in EndsWith()
11732 …StdString::StartsWithMatcher StartsWith( std::string const& str, CaseSensitive::Choice caseSensiti… in StartsWith()
11736 … StdString::RegexMatcher Matches(std::string const& regex, CaseSensitive::Choice caseSensitivity) { in Matches()
14574 , m_wildcardPattern( toLower( name ), CaseSensitive::No ) in NamePattern()
15339 CaseSensitive::Choice caseSensitivity ) in WildcardPattern()
15369 return trim( m_caseSensitivity == CaseSensitive::No ? toLower( str ) : str ); in normaliseString()