Home | History | Annotate | Download | only in internal

Lines Matching refs:rhs

132   static bool CStringEquals(const char* lhs, const char* rhs);
150 static bool WideCStringEquals(const wchar_t* lhs, const wchar_t* rhs);
159 const char* rhs);
174 const wchar_t* rhs);
244 // Returns < 0 if this is less than rhs, 0 if this is equal to rhs, or > 0
245 // if this is greater than rhs.
246 int Compare(const String& rhs) const;
254 bool operator<(const String& rhs) const { return Compare(rhs) < 0; }
281 const String& operator=(const String& rhs) {
282 if (this != &rhs) {
284 if (rhs.c_str() == NULL) {
288 ConstructNonNull(rhs.c_str(), rhs.length());