Searched refs:sizeGrowth (Results 1 - 2 of 2) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/include/
H A DSString.h133 lenpos_t sizeGrowth; ///< Minimum growth size when appending strings member in class:SString
140 SString() : sLen(0), sizeGrowth(sizeGrowthDefault) {}
141 SString(const SString &source) : SContainer(), sizeGrowth(sizeGrowthDefault) {
145 SString(const char *s_) : sizeGrowth(sizeGrowthDefault) {
149 SString(SBuffer &buf) : sizeGrowth(sizeGrowthDefault) {
155 SString(const char *s_, lenpos_t first, lenpos_t last) : sizeGrowth(sizeGrowthDefault) {
204 sizeGrowth = sizeGrowth_;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DPropSet.cxx79 SString::SString(int i) : sizeGrowth(sizeGrowthDefault) {
86 SString::SString(double d, int precision) : sizeGrowth(sizeGrowthDefault) {
94 while (sizeGrowth * 6 < lenNew) {
95 sizeGrowth *= 2;
97 char *sNew = new char[lenNew + sizeGrowth + 1];
105 sSize = lenNew + sizeGrowth;

Completed in 113 milliseconds