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

/haiku/src/kits/shared/
H A DRegExp.cpp154 fMatchCount(0),
157 // fMatchCount is always set to the number of matching groups in the
161 fMatchCount = compiledExpression->re_nsub + 1;
162 fMatches = new regmatch_t[fMatchCount];
163 if (regexec(compiledExpression, string, fMatchCount, fMatches, 0)
167 fMatchCount = 0;
178 return fMatchCount;
187 size_t fMatchCount; member in struct:RegExp::MatchResultData

Completed in 30 milliseconds