Lines Matching refs:AString
211 bool AString::IsPrefixedBy_Ascii_NoCase(const char *s) const throw() in IsPrefixedBy_Ascii_NoCase()
373 void AString::InsertSpace(unsigned &index, unsigned size) in InsertSpace()
381 void AString::ReAlloc(unsigned newLimit) in ReAlloc()
392 void AString::ReAlloc2(unsigned newLimit) in ReAlloc2()
403 void AString::SetStartLen(unsigned len) in SetStartLen()
411 void AString::Grow_1() in Grow_1()
420 void AString::Grow(unsigned n) in Grow()
433 AString::AString(unsigned num, const char *s) in AString() function in AString
443 AString::AString(unsigned num, const AString &s) in AString() function in AString
452 AString::AString(const AString &s, char c) in AString() function in AString
462 AString::AString(const char *s1, unsigned num1, const char *s2, unsigned num2) in AString() function in AString
470 AString operator+(const AString &s1, const AString &s2) { return AString(s1, s1.Len(), s2, s2.Len()… in operator +()
471 AString operator+(const AString &s1, const char *s2) { return AString(s1, s1.Len(), s2, MyString… in operator +()
472 AString operator+(const char *s1, const AString &s2) { return AString(s1, MyStringLen(s1), s2, s… in operator +()
476 AString::AString() in AString() function in AString
485 AString::AString(char c) in AString() function in AString
493 AString::AString(const char *s) in AString() function in AString
499 AString::AString(const AString &s) in AString() function in AString
505 AString &AString::operator=(char c) in operator =()
521 AString &AString::operator=(const char *s) in operator =()
536 AString &AString::operator=(const AString &s) in operator =()
553 void AString::SetFromWStr_if_Ascii(const wchar_t *s) in SetFromWStr_if_Ascii()
606 void AString::Add_Space() { operator+=(' '); } in Add_Space()
607 void AString::Add_Space_if_NotEmpty() { if (!IsEmpty()) Add_Space(); } in Add_Space_if_NotEmpty()
608 void AString::Add_LF() { operator+=('\n'); } in Add_LF()
610 AString &AString::operator+=(const char *s) in operator +=()
619 void AString::Add_OptSpaced(const char *s) in Add_OptSpaced()
625 AString &AString::operator+=(const AString &s) in operator +=()
633 void AString::Add_UInt32(UInt32 v) in Add_UInt32()
640 void AString::SetFrom(const char *s, unsigned len) // no check in SetFrom()
655 void AString::SetFrom_CalcLen(const char *s, unsigned len) // no check in SetFrom_CalcLen()
664 int AString::Find(const char *s, unsigned startIndex) const throw() in Find()
695 int AString::ReverseFind(char c) const throw() in ReverseFind()
710 int AString::ReverseFind_PathSepar() const throw() in ReverseFind_PathSepar()
726 void AString::TrimLeft() throw() in TrimLeft()
743 void AString::TrimRight() throw() in TrimRight()
760 void AString::InsertAtFront(char c) in InsertAtFront()
778 void AString::Insert(unsigned index, const char *s) in Insert()
789 void AString::Insert(unsigned index, const AString &s) in Insert()
800 void AString::RemoveChar(char ch) throw() in RemoveChar()
829 void AString::Replace(char oldChar, char newChar) throw() in Replace()
848 void AString::Replace(const AString &oldString, const AString &newString) in Replace()
871 void AString::Delete(unsigned index) throw() in Delete()
877 void AString::Delete(unsigned index, unsigned count) throw() in Delete()
888 void AString::DeleteFrontal(unsigned num) throw() in DeleteFrontal()
1625 AString fs2fas(CFSTR s) in fs2fas()
1635 FString fas2fs(const AString &s) in fas2fs()