Lines Matching defs:compare
564 * @param pcszThat The string to compare with.
569 int compare(const char *pcszThat, CaseSensitivity cs = CaseSensitive) const
572 are treated the same way so that str.compare(str2.c_str()) works. */
584 * @param pcszThat The string to compare with.
589 int compare(const RTCString &that, CaseSensitivity cs = CaseSensitive) const
600 * @param that The string to compare with.
612 * @param pszThat The string to compare with.
627 * @param that The string to compare with.
640 * @param pszThat The string to compare with.
655 bool operator<( const RTCString &that) const { return compare(that) < 0; }
656 bool operator>( const RTCString &that) const { return compare(that) > 0; }
660 bool operator<( const char *pszThat) const { return compare(pszThat) < 0; }
661 bool operator>( const char *pszThat) const { return compare(pszThat) > 0; }