Home
last modified time | relevance | path

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

/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/string.conversions/
Dstol.pass.cpp23 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/
Dstring.cpp267 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/
Dstring381 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/
DAndroid.mk3629 $(call gen-test, strings/string.conversions/stol)
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk3620 $(call gen-test, strings/string.conversions/stol)