Searched refs:stol (Results 1 – 5 of 5) sorted by relevance
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/string.conversions/ |
D | stol.pass.cpp | 23 assert(std::stol("0") == 0); in main() 24 assert(std::stol(L"0") == 0); in main() 25 assert(std::stol("-0") == 0); in main() 26 assert(std::stol(L"-0") == 0); in main() 27 assert(std::stol("-10") == -10); in main() 28 assert(std::stol(L"-10") == -10); in main() 29 assert(std::stol(" 10") == 10); in main() 30 assert(std::stol(L" 10") == 10); in main() 32 assert(std::stol("10g", &idx, 16) == 16); in main() 35 assert(std::stol(L"10g", &idx, 16) == 16); in main() [all …]
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
D | string.cpp | 267 stol(const string& str, size_t* idx, int base) in stol() function 273 stol(const wstring& str, size_t* idx, int base) in stol() function
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | string | 381 long stol (const string& str, size_t* idx = 0, int base = 10); 401 long stol (const wstring& str, size_t* idx = 0, int base = 10); 4124 _LIBCPP_FUNC_VIS long stol (const string& __str, size_t* __idx = 0, int __base = 10); 4144 _LIBCPP_FUNC_VIS long stol (const wstring& __str, size_t* __idx = 0, int __base = 10…
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
D | Android.mk | 3629 $(call gen-test, strings/string.conversions/stol)
|
/ndk/tests/device/test-libc++-static-full/jni/ |
D | Android.mk | 3620 $(call gen-test, strings/string.conversions/stol)
|