Lines Matching refs:mString
140 const char16_t* mString; variable
176 explicit constexpr String16(const StaticData<N>& s) : mString(s.data) {} in String16()
239 return mString; in string()
268 return strzcmp16(mString, size(), other.mString, other.size()); in compare()
273 return strzcmp16(mString, size(), other.mString, other.size()) < 0;
278 return strzcmp16(mString, size(), other.mString, other.size()) <= 0;
283 return strzcmp16(mString, size(), other.mString, other.size()) == 0;
288 return strzcmp16(mString, size(), other.mString, other.size()) != 0;
293 return strzcmp16(mString, size(), other.mString, other.size()) >= 0;
298 return strzcmp16(mString, size(), other.mString, other.size()) > 0;
303 return strcmp16(mString, other) < 0;
308 return strcmp16(mString, other) <= 0;
313 return strcmp16(mString, other) == 0;
318 return strcmp16(mString, other) != 0;
323 return strcmp16(mString, other) >= 0;
328 return strcmp16(mString, other) > 0;
333 return mString;