Lines Matching refs:throw

104 int FindCharPosInString(const char *s, char c) throw();
105 int FindCharPosInString(const wchar_t *s, wchar_t c) throw();
114 #define STRING_UNICODE_THROW throw()
148 wchar_t MyCharUpper_WIN(wchar_t c) throw();
150 inline wchar_t MyCharUpper(wchar_t c) throw() in MyCharUpper()
191 void MyStringLower_Ascii(char *s) throw();
192 void MyStringLower_Ascii(wchar_t *s) throw();
196 bool StringsAreEqualNoCase(const wchar_t *s1, const wchar_t *s2) throw();
198 bool IsString1PrefixedByString2(const char *s1, const char *s2) throw();
199 bool IsString1PrefixedByString2(const wchar_t *s1, const wchar_t *s2) throw();
200 bool IsString1PrefixedByString2(const wchar_t *s1, const char *s2) throw();
201 bool IsString1PrefixedByString2_NoCase_Ascii(const wchar_t *u, const char *a) throw();
202 bool IsString1PrefixedByString2_NoCase(const wchar_t *s1, const wchar_t *s2) throw();
205 int MyStringCompareNoCase(const wchar_t *s1, const wchar_t *s2) throw();
210 bool StringsAreEqual_Ascii(const wchar_t *u, const char *a) throw();
211 bool StringsAreEqualNoCase_Ascii(const char *s1, const char *s2) throw();
212 bool StringsAreEqualNoCase_Ascii(const wchar_t *s1, const char *s2) throw();
213 bool StringsAreEqualNoCase_Ascii(const wchar_t *s1, const wchar_t *s2) throw();
386 bool IsPrefixedBy_Ascii_NoCase(const char *s) const throw();
404 int ReverseFind(char c) const throw();
405 int ReverseFind_Dot() const throw() { return ReverseFind('.'); } in ReverseFind_Dot()
406 int ReverseFind_PathSepar() const throw();
409 int Find(const char *s, unsigned startIndex) const throw();
411 void TrimLeft() throw();
412 void TrimRight() throw();
424 void RemoveChar(char ch) throw();
426 void Replace(char oldChar, char newChar) throw();
429 void Delete(unsigned index) throw();
430 void Delete(unsigned index, unsigned count) throw();
431 void DeleteFrontal(unsigned num) throw();
628 bool IsPrefixedBy_Ascii_NoCase(const char *s) const throw();
646 int ReverseFind(wchar_t c) const throw();
647 int ReverseFind_Dot() const throw() { return ReverseFind(L'.'); } in ReverseFind_Dot()
648 int ReverseFind_PathSepar() const throw();
651 int Find(const wchar_t *s, unsigned startIndex) const throw();
653 void TrimLeft() throw();
654 void TrimRight() throw();
666 void RemoveChar(wchar_t ch) throw();
668 void Replace(wchar_t oldChar, wchar_t newChar) throw();
671 void Delete(unsigned index) throw();
672 void Delete(unsigned index, unsigned count) throw();
673 void DeleteFrontal(unsigned num) throw();