Searched refs:wcstoll (Results 1 – 8 of 8) sorted by relevance
/ndk/sources/android/support/src/wcstox/ |
D | wcstol.c | 32 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/ |
D | wchar_unittest.cc | 189 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/ |
D | support.h | 49 #define wcstoll _wcstoi64 macro
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cwchar | 60 long long wcstoll(const wchar_t* restrict nptr, wchar_t** restrict endptr, int base); // C99 155 using ::wcstoll;
|
/ndk/sources/android/support/include/ |
D | wchar.h | 151 long long wcstoll (const wchar_t *__restrict__, wchar_t **__restrict__, int);
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/ |
D | wchar_h.pass.cpp | 71 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/ |
D | cwchar.pass.cpp | 71 … 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/ |
D | string.cpp | 167 return as_integer_helper<long long>( func, s, idx, base, wcstoll ); in as_integer()
|