Searched refs:strStart (Results 1 – 5 of 5) sorted by relevance
/external/google-benchmark/src/ |
D | string_util.cc | 178 const char* strStart = str.c_str(); in stoul() local 179 char* strEnd = const_cast<char*>(strStart); in stoul() 180 const unsigned long result = strtoul(strStart, &strEnd, base); in stoul() 190 } else if (strEnd == strStart || strtoulErrno != 0) { in stoul() 195 *pos = static_cast<size_t>(strEnd - strStart); in stoul() 205 const char* strStart = str.c_str(); in stoi() local 206 char* strEnd = const_cast<char*>(strStart); in stoi() 207 const long result = strtol(strStart, &strEnd, base); in stoi() 217 } else if (strEnd == strStart || strtolErrno != 0) { in stoi() 222 *pos = static_cast<size_t>(strEnd - strStart); in stoi() [all …]
|
/external/libcxx/utils/google-benchmark/src/ |
D | string_util.cc | 184 const char* strStart = str.c_str(); in stoul() local 185 char* strEnd = const_cast<char*>(strStart); in stoul() 186 const unsigned long result = strtoul(strStart, &strEnd, base); in stoul() 196 } else if (strEnd == strStart || strtoulErrno != 0) { in stoul() 201 *pos = static_cast<size_t>(strEnd - strStart); in stoul() 211 const char* strStart = str.c_str(); in stoi() local 212 char* strEnd = const_cast<char*>(strStart); in stoi() 213 const long result = strtol(strStart, &strEnd, base); in stoi() 223 } else if (strEnd == strStart || strtolErrno != 0) { in stoi() 228 *pos = static_cast<size_t>(strEnd - strStart); in stoi() [all …]
|
/external/llvm-project/libcxx/utils/google-benchmark/src/ |
D | string_util.cc | 184 const char* strStart = str.c_str(); in stoul() local 185 char* strEnd = const_cast<char*>(strStart); in stoul() 186 const unsigned long result = strtoul(strStart, &strEnd, base); in stoul() 196 } else if (strEnd == strStart || strtoulErrno != 0) { in stoul() 201 *pos = static_cast<size_t>(strEnd - strStart); in stoul() 211 const char* strStart = str.c_str(); in stoi() local 212 char* strEnd = const_cast<char*>(strStart); in stoi() 213 const long result = strtol(strStart, &strEnd, base); in stoi() 223 } else if (strEnd == strStart || strtolErrno != 0) { in stoi() 228 *pos = static_cast<size_t>(strEnd - strStart); in stoi() [all …]
|
/external/pdfium/fxbarcode/oned/ |
D | BC_OnedCodaBarWriter.cpp | 193 WideString strStart(static_cast<wchar_t>(m_chStart)); in encodedContents() 195 return strStart + contents + strEnd; in encodedContents()
|
/external/llvm-project/libunwind/src/ |
D | DwarfParser.hpp | 341 pint_t strStart = p; in parseCIE() local 356 if (addressSpace.get8(strStart) == 'z') { in parseCIE() 359 for (pint_t s = strStart; addressSpace.get8(s) != '\0'; ++s) { in parseCIE()
|