Home | History | Annotate | Download | only in xmllite

Lines Matching refs:other

31   bool operator==(const QName& other) const;
32 bool operator!=(const QName& other) const;
49 int Compare(const StaticQName& other) const;
50 int Compare(const QName& other) const;
52 bool operator==(const StaticQName& other) const {
53 return Compare(other) == 0;
55 bool operator==(const QName& other) const {
56 return Compare(other) == 0;
58 bool operator!=(const StaticQName& other) const {
59 return Compare(other) != 0;
61 bool operator!=(const QName& other) const {
62 return Compare(other) != 0;
64 bool operator<(const QName& other) const {
65 return Compare(other) < 0;
73 inline bool StaticQName::operator==(const QName& other) const {
74 return other.Compare(*this) == 0;
77 inline bool StaticQName::operator!=(const QName& other) const {
78 return other.Compare(*this) != 0;