Searched refs:stoul (Results 1 – 5 of 5) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/string.conversions/ |
D | stoul.pass.cpp | 23 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/ |
D | string.cpp | 279 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/ |
D | string | 382 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/ |
D | Android.mk | 3631 $(call gen-test, strings/string.conversions/stoul)
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 3622 $(call gen-test, strings/string.conversions/stoul)
|