Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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 …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dstring.cpp279 stoul(const string& str, size_t* idx, int base) in stoul() function
285 stoul(const wstring& str, size_t* idx, int base) in stoul() function
/ndk/sources/cxx-stl/llvm-libc++/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);
4125 _LIBCPP_FUNC_VIS unsigned long stoul (const string& __str, size_t* __idx = 0, int __base = 10);
4145 _LIBCPP_FUNC_VIS unsigned long stoul (const wstring& __str, size_t* __idx = 0, int __base = 10…
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk3631 $(call gen-test, strings/string.conversions/stoul)
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk3622 $(call gen-test, strings/string.conversions/stoul)