Searched refs:stoull (Results 1 – 3 of 3) sorted by relevance
/external/libcxx/test/std/strings/string.conversions/ |
D | stoull.pass.cpp | 23 assert(std::stoull("0") == 0); in main() 24 assert(std::stoull(L"0") == 0); in main() 25 assert(std::stoull("-0") == 0); in main() 26 assert(std::stoull(L"-0") == 0); in main() 27 assert(std::stoull(" 10") == 10); in main() 28 assert(std::stoull(L" 10") == 10); in main() 30 assert(std::stoull("10g", &idx, 16) == 16); in main() 33 assert(std::stoull(L"10g", &idx, 16) == 16); in main() 38 std::stoull("", &idx); in main() 48 std::stoull(L"", &idx); in main() [all …]
|
/external/libcxx/src/ |
D | string.cpp | 304 stoull(const string& str, size_t* idx, int base) in stoull() function 310 stoull(const wstring& str, size_t* idx, int base) in stoull() function
|
/external/libcxx/include/ |
D | string | 384 unsigned long long stoull(const string& str, size_t* idx = 0, int base = 10); 404 unsigned long long stoull(const wstring& str, size_t* idx = 0, int base = 10); 4093 _LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10); 4113 _LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10…
|