• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-12-stable/contrib/libstdc++/include/ext/

Lines Matching refs:compare

1655        *  @param str  String to compare against.
1661 * compare as the smallest of size() and str.size(). The function
1662 * then compares the two strings by calling traits::compare(data(),
1667 compare(const __versa_string& __str) const
1676 int __r = traits_type::compare(this->_M_data(), __str.data(), __len);
1686 * @param str String to compare against.
1693 * rlen of the strings to compare as the smallest of the length of the
1695 * strings by calling traits::compare(substring.data(),str.data(),rlen).
1700 compare(size_type __pos, size_type __n,
1707 * @param str String to compare against.
1718 * to compare as the smallest of the lengths of the substrings. The
1720 * traits::compare(substring.data(),str.substr(pos2,n2).data(),rlen).
1725 compare(size_type __pos1, size_type __n1, const __versa_string& __str,
1730 * @param s C string to compare against.
1736 * compare as the smallest of size() and the length of a string
1738 * by calling traits::compare(data(),s,rlen). If the result of the
1743 compare(const _CharT* __s) const;
1746 // 5 String::compare specification questionable
1751 * @param s C string to compare against.
1758 * rlen of the strings to compare as the smallest of the length of the
1761 * traits::compare(substring.data(),s,rlen). If the result of the
1766 compare(size_type __pos, size_type __n1, const _CharT* __s) const;
1772 * @param s character array to compare against.
1781 * length rlen of the strings to compare as the smallest of the length
1783 * strings by calling traits::compare(substring.data(),s,rlen). If the
1791 compare(size_type __pos, size_type __n1, const _CharT* __s,
1861 * @return True if @a lhs.compare(@a rhs) == 0. False otherwise.
1868 { return __lhs.compare(__rhs) == 0; }
1874 * @return True if @a rhs.compare(@a lhs) == 0. False otherwise.
1881 { return __rhs.compare(__lhs) == 0; }
1887 * @return True if @a lhs.compare(@a rhs) == 0. False otherwise.
1894 { return __lhs.compare(__rhs) == 0; }
1901 * @return True if @a lhs.compare(@a rhs) != 0. False otherwise.
1908 { return __rhs.compare(__lhs) != 0; }
1914 * @return True if @a rhs.compare(@a lhs) != 0. False otherwise.
1921 { return __rhs.compare(__lhs) != 0; }
1927 * @return True if @a lhs.compare(@a rhs) != 0. False otherwise.
1934 { return __lhs.compare(__rhs) != 0; }
1948 { return __lhs.compare(__rhs) < 0; }
1961 { return __lhs.compare(__rhs) < 0; }
1974 { return __rhs.compare(__lhs) > 0; }
1988 { return __lhs.compare(__rhs) > 0; }
2001 { return __lhs.compare(__rhs) > 0; }
2014 { return __rhs.compare(__lhs) < 0; }
2028 { return __lhs.compare(__rhs) <= 0; }
2041 { return __lhs.compare(__rhs) <= 0; }
2054 { return __rhs.compare(__lhs) >= 0; }
2068 { return __lhs.compare(__rhs) >= 0; }
2081 { return __lhs.compare(__rhs) >= 0; }
2094 { return __rhs.compare(__lhs) <= 0; }