Lines Matching refs:AString

184 bool AString::IsPrefixedBy_Ascii_NoCase(const char *s) const throw()  in IsPrefixedBy_Ascii_NoCase()
314 void AString::InsertSpace(unsigned &index, unsigned size) in InsertSpace()
320 void AString::ReAlloc(unsigned newLimit) in ReAlloc()
332 void AString::SetStartLen(unsigned len) in SetStartLen()
340 void AString::Grow_1() in Grow_1()
349 void AString::Grow(unsigned n) in Grow()
374 AString::AString(unsigned num, const AString &s) in AString() function in AString
383 AString::AString(const AString &s, char c) in AString() function in AString
393 AString::AString(const char *s1, unsigned num1, const char *s2, unsigned num2) in AString() function in AString
401 AString operator+(const AString &s1, const AString &s2) { return AString(s1, s1.Len(), s2, s2.Len()… in operator +()
402 AString operator+(const AString &s1, const char *s2) { return AString(s1, s1.Len(), s2, MyString… in operator +()
403 AString operator+(const char *s1, const AString &s2) { return AString(s1, MyStringLen(s1), s2, s… in operator +()
405 AString::AString() in AString() function in AString
414 AString::AString(char c) in AString() function in AString
421 AString::AString(const char *s) in AString() function in AString
427 AString::AString(const AString &s) in AString() function in AString
433 AString &AString::operator=(char c) in operator =()
448 AString &AString::operator=(const char *s) in operator =()
463 AString &AString::operator=(const AString &s) in operator =()
480 AString &AString::operator+=(const char *s) in operator +=()
489 AString &AString::operator+=(const AString &s) in operator +=()
497 void AString::SetFrom(const char *s, unsigned len) // no check in SetFrom()
511 int AString::Find(const AString &s, unsigned startIndex) const throw() in Find()
527 int AString::ReverseFind(char c) const throw() in ReverseFind()
542 void AString::TrimLeft() throw() in TrimLeft()
559 void AString::TrimRight() throw() in TrimRight()
577 void AString::InsertAtFront(char c) in InsertAtFront()
595 void AString::Insert(unsigned index, const char *s) in Insert()
606 void AString::Insert(unsigned index, const AString &s) in Insert()
617 void AString::RemoveChar(char ch) throw() in RemoveChar()
637 void AString::Replace(char oldChar, char newChar) throw() in Replace()
655 void AString::Replace(const AString &oldString, const AString &newString) in Replace()
678 void AString::Delete(unsigned index) throw() in Delete()
684 void AString::Delete(unsigned index, unsigned count) throw() in Delete()
695 void AString::DeleteFrontal(unsigned num) throw() in DeleteFrontal()
1191 AString fs2fas(CFSTR s) in fs2fas()
1196 FString fas2fs(const AString &s) in fas2fs()
1207 return MultiByteToUnicodeString((AString)s, GetCurrentCodePage()); in fs2us()