Lines Matching refs:newLimit
406 void AString::ReAlloc(unsigned newLimit) in ReAlloc() argument
409 char *newBuf = MY_STRING_NEW_char((size_t)newLimit + 1); in ReAlloc()
413 _limit = newLimit; in ReAlloc()
416 void AString::ReAlloc2(unsigned newLimit) in ReAlloc2() argument
418 if (newLimit > k_Alloc_Len_Limit) throw 20130220; in ReAlloc2()
420 char *newBuf = MY_STRING_NEW_char((size_t)newLimit + 1); in ReAlloc2()
424 _limit = newLimit; in ReAlloc2()
999 void UString::ReAlloc(unsigned newLimit) in ReAlloc() argument
1002 wchar_t *newBuf = MY_STRING_NEW_wchar_t((size_t)newLimit + 1); in ReAlloc()
1006 _limit = newLimit; in ReAlloc()
1009 void UString::ReAlloc2(unsigned newLimit) in ReAlloc2() argument
1011 if (newLimit > k_Alloc_Len_Limit) throw 20130221; in ReAlloc2()
1013 wchar_t *newBuf = MY_STRING_NEW_wchar_t((size_t)newLimit + 1); in ReAlloc2()
1017 _limit = newLimit; in ReAlloc2()
1597 void UString2::ReAlloc2(unsigned newLimit) in ReAlloc2() argument
1600 if (newLimit > k_Alloc_Len_Limit) throw 20130221; in ReAlloc2()
1608 _chars = MY_STRING_NEW_wchar_t((size_t)newLimit + 1); in ReAlloc2()