Lines Matching refs:newLimit
381 void AString::ReAlloc(unsigned newLimit) in ReAlloc() argument
383 if (newLimit < _len || newLimit >= k_Alloc_Len_Limit) throw 20130220; in ReAlloc()
385 char *newBuf = MY_STRING_NEW_char(newLimit + 1); in ReAlloc()
389 _limit = newLimit; in ReAlloc()
392 void AString::ReAlloc2(unsigned newLimit) in ReAlloc2() argument
394 if (newLimit >= k_Alloc_Len_Limit) throw 20130220; in ReAlloc2()
396 char *newBuf = MY_STRING_NEW_char(newLimit + 1); in ReAlloc2()
400 _limit = newLimit; in ReAlloc2()
947 void UString::ReAlloc(unsigned newLimit) in ReAlloc() argument
949 if (newLimit < _len || newLimit >= k_Alloc_Len_Limit) throw 20130221; in ReAlloc()
951 wchar_t *newBuf = MY_STRING_NEW_wchar_t(newLimit + 1); in ReAlloc()
955 _limit = newLimit; in ReAlloc()
958 void UString::ReAlloc2(unsigned newLimit) in ReAlloc2() argument
960 if (newLimit >= k_Alloc_Len_Limit) throw 20130221; in ReAlloc2()
962 wchar_t *newBuf = MY_STRING_NEW_wchar_t(newLimit + 1); in ReAlloc2()
966 _limit = newLimit; in ReAlloc2()
1474 void UString2::ReAlloc2(unsigned newLimit) in ReAlloc2() argument
1476 if (newLimit >= k_Alloc_Len_Limit) throw 20130221; in ReAlloc2()
1478 _chars = MY_STRING_NEW_wchar_t(newLimit + 1); in ReAlloc2()