Home
last modified time | relevance | path

Searched refs:stoull (Results 1 – 4 of 4) sorted by relevance

/external/libcxx/test/std/strings/string.conversions/
Dstoull.pass.cpp25 assert(std::stoull("0") == 0); in main()
26 assert(std::stoull(L"0") == 0); in main()
27 assert(std::stoull("-0") == 0); in main()
28 assert(std::stoull(L"-0") == 0); in main()
29 assert(std::stoull(" 10") == 10); in main()
30 assert(std::stoull(L" 10") == 10); in main()
32 assert(std::stoull("10g", &idx, 16) == 16); in main()
35 assert(std::stoull(L"10g", &idx, 16) == 16); in main()
41 std::stoull("", &idx); in main()
51 std::stoull(L"", &idx); in main()
[all …]
/external/libcxx/src/
Dstring.cpp304 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/libese/apps/boot/
Dese_boot_tool.cpp389 unsigned long long conv = std::stoull(args[3], nullptr, 0); in handle_rollback()
/external/libcxx/include/
Dstring419 unsigned long long stoull(const string& str, size_t* idx = 0, int base = 10);
439 unsigned long long stoull(const wstring& str, size_t* idx = 0, int base = 10);
3874 _LIBCPP_FUNC_VIS unsigned long long stoull(const string& __str, size_t* __idx = 0, int __base = 10);
3894 _LIBCPP_FUNC_VIS unsigned long long stoull(const wstring& __str, size_t* __idx = 0, int __base = 10…