Lines Matching refs:UString

199 bool UString::IsPrefixedBy_Ascii_NoCase(const char *s) const throw()  in IsPrefixedBy_Ascii_NoCase()
748 void UString::InsertSpace(unsigned index, unsigned size) in InsertSpace()
754 void UString::ReAlloc(unsigned newLimit) in ReAlloc()
766 void UString::SetStartLen(unsigned len) in SetStartLen()
774 void UString::Grow_1() in Grow_1()
783 void UString::Grow(unsigned n) in Grow()
797 UString::UString(unsigned num, const wchar_t *s) in UString() function in UString
808 UString::UString(unsigned num, const UString &s) in UString() function in UString
817 UString::UString(const UString &s, wchar_t c) in UString() function in UString
827 UString::UString(const wchar_t *s1, unsigned num1, const wchar_t *s2, unsigned num2) in UString() function in UString
835 UString operator+(const UString &s1, const UString &s2) { return UString(s1, s1.Len(), s2, s2.Len()… in operator +()
836 UString operator+(const UString &s1, const wchar_t *s2) { return UString(s1, s1.Len(), s2, MyString… in operator +()
837 UString operator+(const wchar_t *s1, const UString &s2) { return UString(s1, MyStringLen(s1), s2, s… in operator +()
839 UString::UString() in UString() function in UString
848 UString::UString(wchar_t c) in UString() function in UString
855 UString::UString(const wchar_t *s) in UString() function in UString
861 UString::UString(const UString &s) in UString() function in UString
867 UString &UString::operator=(wchar_t c) in operator =()
882 UString &UString::operator=(const wchar_t *s) in operator =()
897 UString &UString::operator=(const UString &s) in operator =()
914 UString &UString::operator+=(const wchar_t *s) in operator +=()
923 UString &UString::operator+=(const UString &s) in operator +=()
931 void UString::SetFrom(const wchar_t *s, unsigned len) // no check in SetFrom()
945 void UString::SetFromAscii(const char *s) in SetFromAscii()
962 void UString::AddAsciiStr(const char *s) in AddAsciiStr()
975 int UString::Find(const UString &s, unsigned startIndex) const throw() in Find()
991 int UString::ReverseFind(wchar_t c) const throw() in ReverseFind()
1006 void UString::TrimLeft() throw() in TrimLeft()
1023 void UString::TrimRight() throw() in TrimRight()
1041 void UString::InsertAtFront(wchar_t c) in InsertAtFront()
1059 void UString::Insert(unsigned index, const wchar_t *s) in Insert()
1070 void UString::Insert(unsigned index, const UString &s) in Insert()
1081 void UString::RemoveChar(wchar_t ch) throw() in RemoveChar()
1101 void UString::Replace(wchar_t oldChar, wchar_t newChar) throw() in Replace()
1119 void UString::Replace(const UString &oldString, const UString &newString) in Replace()
1142 void UString::Delete(unsigned index) throw() in Delete()
1148 void UString::Delete(unsigned index, unsigned count) throw() in Delete()
1159 void UString::DeleteFrontal(unsigned num) throw() in DeleteFrontal()
1205 UString fs2us(const FString &s) in fs2us()