Lines Matching refs:FixedLengthString

67 class FixedLengthString : private detail::FixedLengthStringBuffer<TChar, TObjectSize>
173 FixedLengthString() in FixedLengthString() function
180 FixedLengthString(const T* s) in FixedLengthString() function
195 FixedLengthString(const FixedLengthString<TChar, Length, Size>& s1) in FixedLengthString() function
208 FixedLengthString& Clear() in Clear()
233 FixedLengthString& AppendHead(const FixedLengthString<Char, Length, Size>& s) in AppendHead()
263 FixedLengthString& AppendHead(const Char* s) in AppendHead()
294 FixedLengthString& AppendTail(const FixedLengthString<Char, Length, Size>& s) in AppendTail()
315 FixedLengthString& AppendTail(const Char* s) in AppendTail()
329 FixedLengthString& AppendTailAsHex(bit32 x) in AppendTailAsHex()
355 FixedLengthString& AppendTail(const Char2* s, size_t size) in AppendTail()
379 FixedLengthString& AppendTail(const Char2 s[Size]) in AppendTail()
384 FixedLengthString& EraseTail(size_t length) in EraseTail()
394 FixedLengthString& EraseHead(size_t length) in EraseHead()
406 FixedLengthString& operator+=(const FixedLengthString<Char, Length, Size>& rhs)
413 FixedLengthString& operator+=(const Char2 s[Size]) { return AppendTail(s); }
415 FixedLengthString& operator+=(const Char* rhs)
422 …friend bool operator==(const FixedLengthString& lhs, const FixedLengthString<Char, Length2, Size2>…
427 friend bool operator==(const FixedLengthString& lhs, const Char* rhs)
432 friend bool operator==(const Char* lhs, const FixedLengthString& rhs)
438 …friend bool operator!=(const FixedLengthString& lhs, const FixedLengthString<Char, Length2, Size2>…
443 friend bool operator!=(const FixedLengthString& lhs, const Char* rhs)
448 friend bool operator!=(const Char* lhs, const FixedLengthString& rhs)
454 …friend bool operator<(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>& …
461 …friend bool operator>(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>& …
467 …friend bool operator<=(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>&…
473 …friend bool operator>=(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>&…