Home
last modified time | relevance | path

Searched refs:wcstoll (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/android/support/src/wcstox/
Dwcstol.c32 long long wcstoll(const wchar_t *restrict s, wchar_t **restrict p, int base) in wcstoll() function
53 return wcstoll(s, p, base); in wcstoimax()
/ndk/sources/android/support/tests/
Dwchar_unittest.cc189 TEST(wchar, wcstoll) { in TEST() argument
209 EXPECT_EQ(kData[n].expected, wcstoll(kData[n].input, &end, kData[n].base)); in TEST()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
Dsupport.h49 #define wcstoll _wcstoi64 macro
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcwchar60 long long wcstoll(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base); // C99
155 using ::wcstoll;
/ndk/sources/android/support/include/
Dwchar.h151 long long wcstoll (const wchar_t *__restrict__, wchar_t **__restrict__, int);
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dwchar_h.pass.cpp71 static_assert((std::is_same<decltype(wcstoll(L"", (wchar_t**)0, 0)), long long>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/c.strings/
Dcwchar.pass.cpp71 … static_assert((std::is_same<decltype(std::wcstoll(L"", (wchar_t**)0, 0)), long long>::value), ""); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/
Dstring.cpp167 return as_integer_helper<long long>( func, s, idx, base, wcstoll ); in as_integer()