Home
last modified time | relevance | path

Searched refs:CStringBase (Results 1 – 1 of 1) sorted by relevance

/external/lzma/CPP/Common/
DMyString.h109 class CStringBase
111 void TrimLeftWithCharSet(const CStringBase &charSet) in TrimLeftWithCharSet()
118 void TrimRightWithCharSet(const CStringBase &charSet) in TrimRightWithCharSet()
208 CStringBase(): _chars(0), _length(0), _capacity(0) { SetCapacity(3); } in CStringBase() function
209 CStringBase(T c): _chars(0), _length(0), _capacity(0) in CStringBase() function
216 CStringBase(const T *chars): _chars(0), _length(0), _capacity(0) in CStringBase() function
223 CStringBase(const CStringBase &s): _chars(0), _length(0), _capacity(0) in CStringBase() function
229 ~CStringBase() { delete []_chars; } in ~CStringBase()
254 CStringBase& operator=(T c)
263 CStringBase& operator=(const T *chars)
[all …]