Home
last modified time | relevance | path

Searched refs:wcstoul (Results 1 – 7 of 7) sorted by relevance

/ndk/sources/android/support/src/wcstox/
Dwcstol.c37 unsigned long wcstoul(const wchar_t *restrict s, in wcstoul() function
/ndk/sources/android/support/tests/
Dwchar_unittest.cc163 TEST(wchar, wcstoul) { in TEST() argument
183 EXPECT_EQ(kData[n].expected, wcstoul(kData[n].input, &end, kData[n].base)); in TEST()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcwchar61 unsigned long wcstoul(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base);
157 using ::wcstoul;
/ndk/sources/android/support/include/
Dwchar.h149 unsigned long wcstoul (const wchar_t *__restrict__, wchar_t **__restrict__, int);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dwchar_h.pass.cpp72 … static_assert((std::is_same<decltype(wcstoul(L"", (wchar_t**)0, 0)), unsigned long>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
Dcwchar.pass.cpp72 …static_assert((std::is_same<decltype(std::wcstoul(L"", (wchar_t**)0, 0)), unsigned long>::value), … in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dstring.cpp159 return as_integer_helper<unsigned long>( func, s, idx, base, wcstoul ); in as_integer()