Lines Matching refs:AString
194 bool AString::IsPrefixedBy_Ascii_NoCase(const char *s) const throw() in IsPrefixedBy_Ascii_NoCase()
336 void AString::InsertSpace(unsigned &index, unsigned size) in InsertSpace()
344 void AString::ReAlloc(unsigned newLimit) in ReAlloc()
355 void AString::ReAlloc2(unsigned newLimit) in ReAlloc2()
366 void AString::SetStartLen(unsigned len) in SetStartLen()
374 void AString::Grow_1() in Grow_1()
383 void AString::Grow(unsigned n) in Grow()
408 AString::AString(unsigned num, const AString &s) in AString() function in AString
417 AString::AString(const AString &s, char c) in AString() function in AString
427 AString::AString(const char *s1, unsigned num1, const char *s2, unsigned num2) in AString() function in AString
435 AString operator+(const AString &s1, const AString &s2) { return AString(s1, s1.Len(), s2, s2.Len()… in operator +()
436 AString operator+(const AString &s1, const char *s2) { return AString(s1, s1.Len(), s2, MyString… in operator +()
437 AString operator+(const char *s1, const AString &s2) { return AString(s1, MyStringLen(s1), s2, s… in operator +()
439 AString::AString() in AString() function in AString
448 AString::AString(char c) in AString() function in AString
455 AString::AString(const char *s) in AString() function in AString
461 AString::AString(const AString &s) in AString() function in AString
467 AString &AString::operator=(char c) in operator =()
482 AString &AString::operator=(const char *s) in operator =()
497 AString &AString::operator=(const AString &s) in operator =()
514 void AString::SetFromWStr_if_Ascii(const wchar_t *s) in SetFromWStr_if_Ascii()
567 void AString::Add_Space() { operator+=(' '); } in Add_Space()
568 void AString::Add_Space_if_NotEmpty() { if (!IsEmpty()) Add_Space(); } in Add_Space_if_NotEmpty()
569 void AString::Add_LF() { operator+=('\n'); } in Add_LF()
571 AString &AString::operator+=(const char *s) in operator +=()
580 AString &AString::operator+=(const AString &s) in operator +=()
588 void AString::SetFrom(const char *s, unsigned len) // no check in SetFrom()
603 void AString::SetFrom_CalcLen(const char *s, unsigned len) // no check in SetFrom_CalcLen()
612 int AString::Find(const char *s, unsigned startIndex) const throw() in Find()
643 int AString::ReverseFind(char c) const throw() in ReverseFind()
658 int AString::ReverseFind_PathSepar() const throw() in ReverseFind_PathSepar()
674 void AString::TrimLeft() throw() in TrimLeft()
691 void AString::TrimRight() throw() in TrimRight()
708 void AString::InsertAtFront(char c) in InsertAtFront()
726 void AString::Insert(unsigned index, const char *s) in Insert()
737 void AString::Insert(unsigned index, const AString &s) in Insert()
748 void AString::RemoveChar(char ch) throw() in RemoveChar()
777 void AString::Replace(char oldChar, char newChar) throw() in Replace()
795 void AString::Replace(const AString &oldString, const AString &newString) in Replace()
818 void AString::Delete(unsigned index) throw() in Delete()
824 void AString::Delete(unsigned index, unsigned count) throw() in Delete()
835 void AString::DeleteFrontal(unsigned num) throw() in DeleteFrontal()
1540 AString fs2fas(CFSTR s) in fs2fas()
1545 FString fas2fs(const AString &s) in fas2fs()
1556 return MultiByteToUnicodeString((AString)s, GetCurrentCodePage()); in fs2us()