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& AppendHeadAsHex(bit32 x) in AppendHeadAsHex()
342 FixedLengthString& AppendTailAsHex(bit32 x) in AppendTailAsHex()
368 FixedLengthString& AppendTail(const Char2* s, size_t size) in AppendTail()
392 FixedLengthString& AppendTail(const Char2 s[Size]) in AppendTail()
397 FixedLengthString& EraseTail(size_t length) in EraseTail()
407 FixedLengthString& EraseHead(size_t length) in EraseHead()
419 FixedLengthString& operator+=(const FixedLengthString<Char, Length, Size>& rhs)
426 FixedLengthString& operator+=(const Char2 s[Size]) { return AppendTail(s); }
428 FixedLengthString& operator+=(const Char* rhs)
435 …friend bool operator==(const FixedLengthString& lhs, const FixedLengthString<Char, Length2, Size2>…
440 friend bool operator==(const FixedLengthString& lhs, const Char* rhs)
445 friend bool operator==(const Char* lhs, const FixedLengthString& rhs)
451 …friend bool operator!=(const FixedLengthString& lhs, const FixedLengthString<Char, Length2, Size2>…
456 friend bool operator!=(const FixedLengthString& lhs, const Char* rhs)
461 friend bool operator!=(const Char* lhs, const FixedLengthString& rhs)
467 …friend bool operator<(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>& …
474 …friend bool operator>(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>& …
480 …friend bool operator<=(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>&…
486 …friend bool operator>=(const FixedLengthString& lhs, const FixedLengthString<TChar, Length, Size>&…