Lines Matching refs:strEnd
181 char* strEnd = const_cast<char*>(strStart);
182 const unsigned long result = strtoul(strStart, &strEnd, base);
192 } else if (strEnd == strStart || strtoulErrno != 0) {
196 *pos = static_cast<size_t>(strEnd - strStart);
207 char* strEnd = const_cast<char*>(strStart);
208 const long result = strtol(strStart, &strEnd, base);
218 } else if (strEnd == strStart || strtolErrno != 0) {
222 *pos = static_cast<size_t>(strEnd - strStart);
233 char* strEnd = const_cast<char*>(strStart);
234 const double result = strtod(strStart, &strEnd);
244 } else if (strEnd == strStart || strtodErrno != 0) {
248 *pos = static_cast<size_t>(strEnd - strStart);