HomeSort by: relevance | last modified time | path
    Searched defs:stoul (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/libcxx/src/
string.cpp 280 stoul(const string& str, size_t* idx, int base) function
282 return as_integer<unsigned long>( "stoul", str, idx, base );
286 stoul(const wstring& str, size_t* idx, int base) function
288 return as_integer<unsigned long>( "stoul", str, idx, base );
string.cpp 280 stoul(const string& str, size_t* idx, int base) function
282 return as_integer<unsigned long>( "stoul", str, idx, base );
286 stoul(const wstring& str, size_t* idx, int base) function
288 return as_integer<unsigned long>( "stoul", str, idx, base );
  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
string_util.cc 175 * stoul, stoi, stod. We reimplement them here using C functions strtoul,
179 unsigned long stoul(const std::string& str, size_t* pos, int base) { function in namespace:benchmark
195 "stoul failed: " + str + " is outside of range of unsigned long");
198 "stoul failed: " + str + " is not an integer");
222 "stoul failed: " + str + " is outside of range of int");
225 "stoul failed: " + str + " is not an integer");
249 "stoul failed: " + str + " is outside of range of int");
252 "stoul failed: " + str + " is not an integer");
string_util.cc 175 * stoul, stoi, stod. We reimplement them here using C functions strtoul,
179 unsigned long stoul(const std::string& str, size_t* pos, int base) { function in namespace:benchmark
195 "stoul failed: " + str + " is outside of range of unsigned long");
198 "stoul failed: " + str + " is not an integer");
222 "stoul failed: " + str + " is outside of range of int");
225 "stoul failed: " + str + " is not an integer");
249 "stoul failed: " + str + " is outside of range of int");
252 "stoul failed: " + str + " is not an integer");
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
vstring.h 2703 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2704 { return __gnu_cxx::__stoa(&std::strtoul, "stoul", __str.c_str(),
2808 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
2809 { return __gnu_cxx::__stoa(&std::wcstoul, "stoul", __str.c_str(),
vstring.h 2703 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2704 { return __gnu_cxx::__stoa(&std::strtoul, "stoul", __str.c_str(),
2808 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
2809 { return __gnu_cxx::__stoa(&std::wcstoul, "stoul", __str.c_str(),
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
vstring.h 2706 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2707 { return __gnu_cxx::__stoa(&std::strtoul, "stoul", __str.c_str(),
2811 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
2812 { return __gnu_cxx::__stoa(&std::wcstoul, "stoul", __str.c_str(),
vstring.h 2706 stoul(const __vstring& __str, std::size_t* __idx = 0, int __base = 10) function
2707 { return __gnu_cxx::__stoa(&std::strtoul, "stoul", __str.c_str(),
2811 stoul(const __wvstring& __str, std::size_t* __idx = 0, int __base = 10) function
2812 { return __gnu_cxx::__stoa(&std::wcstoul, "stoul", __str.c_str(),
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
basic_string.h 4174 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
4175 { return __gnu_cxx::__stoa(&std::strtoul, "stoul", __str.c_str(),
4195 { return std::stoul(__str, __idx, __base); }
4442 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10)
4443 { return __gnu_cxx::__stoa(&std::wcstoul, "stoul", __str.c_str(),
basic_string.h 4174 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
4175 { return __gnu_cxx::__stoa(&std::strtoul, "stoul", __str.c_str(),
4195 { return std::stoul(__str, __idx, __base); }
4442 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10)
4443 { return __gnu_cxx::__stoa(&std::wcstoul, "stoul", __str.c_str(),
  /src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/
basic_string.h 3993 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
3994 { return __gnu_cxx::__stoa(&std::strtoul, "stoul", __str.c_str(),
4136 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10)
4137 { return __gnu_cxx::__stoa(&std::wcstoul, "stoul", __str.c_str(),
basic_string.h 3993 stoul(const string& __str, size_t* __idx = 0, int __base = 10) function
3994 { return __gnu_cxx::__stoa(&std::strtoul, "stoul", __str.c_str(),
4136 stoul(const wstring& __str, size_t* __idx = 0, int __base = 10)
4137 { return __gnu_cxx::__stoa(&std::wcstoul, "stoul", __str.c_str(),

Completed in 47 milliseconds