Home
last modified time | relevance | path

Searched refs:stoul (Results 1 – 5 of 5) sorted by relevance

/external/libcxx/test/std/strings/string.conversions/
Dstoul.pass.cpp23 assert(std::stoul("0") == 0); in main()
24 assert(std::stoul(L"0") == 0); in main()
25 assert(std::stoul("-0") == 0); in main()
26 assert(std::stoul(L"-0") == 0); in main()
27 assert(std::stoul(" 10") == 10); in main()
28 assert(std::stoul(L" 10") == 10); in main()
30 assert(std::stoul("10g", &idx, 16) == 16); in main()
33 assert(std::stoul(L"10g", &idx, 16) == 16); in main()
38 std::stoul("", &idx); in main()
47 std::stoul(L"", &idx); in main()
[all …]
/external/libcxx/src/
Dstring.cpp280 stoul(const string& str, size_t* idx, int base) in stoul() function
286 stoul(const wstring& str, size_t* idx, int base) in stoul() function
/external/llvm/lib/Fuzzer/
DFuzzerDriver.cpp117 unsigned int Val = std::stoul(Str); in ParseOneFlag()
/external/libbrillo/brillo/http/
Dhttp_utils_unittest.cc307 std::stoul(request.GetHeader(request_header::kContentLength))); in TEST()
/external/libcxx/include/
Dstring382 unsigned long stoul (const string& str, size_t* idx = 0, int base = 10);
402 unsigned long stoul (const wstring& str, size_t* idx = 0, int base = 10);
4091 _LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10);
4111 _LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10…