HomeSort by relevance Sort by last modified time
    Searched refs:mbtowc (Results 1 - 25 of 38) sorted by null

1 2

  /bionic/libc/upstream-openbsd/lib/libc/locale/
mbtowc.c 1 /* $OpenBSD: mbtowc.c,v 1.2 2012/12/05 23:20:00 deraadt Exp $ */
36 mbtowc(wchar_t * __restrict pwc, const char * __restrict s, size_t n) function
  /prebuilts/ndk/r16/sources/android/support/include/
stdlib.h 47 int mbtowc(wchar_t*, const char*, size_t);
  /prebuilts/ndk/r16/sources/cxx-stl/system/include/
cstdlib 111 using ::mbtowc;
  /device/linaro/bootloader/edk2/StdLib/Include/
stdlib.h 67 int mbtowc (wchar_t * __restrict, const char * __restrict, size_t);
    [all...]
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
multibyte_sb.c 114 mbtowc( function
  /external/libedit/src/
chartype.h 67 #define ct_mbtowc mbtowc
68 #define ct_mbtowc_reset mbtowc(0,0,(size_t)0)
  /bionic/tests/
wchar_test.cpp 246 TEST(wchar, mbtowc) {
250 ASSERT_EQ(0, mbtowc(out, "hello", 0));
253 ASSERT_EQ(0, mbtowc(out, "hello", 0));
254 ASSERT_EQ(0, mbtowc(out, "", 0));
255 ASSERT_EQ(1, mbtowc(out, "hello", 1));
258 ASSERT_EQ(0, mbtowc(NULL, "hello", 0));
259 ASSERT_EQ(0, mbtowc(NULL, "", 0));
260 ASSERT_EQ(1, mbtowc(NULL, "hello", 1));
262 ASSERT_EQ(0, mbtowc(NULL, NULL, 0));
  /bionic/tests/headers/posix/
stdlib_h.c 105 FUNCTION(mbtowc, int (*f)(wchar_t*, const char*, size_t));
  /external/libcxx/include/
__bsd_locale_fallbacks.h 83 return mbtowc(__pwc, __pmb, __max);
  /external/libcxx/test/std/depr/depr.c.headers/
stdlib_h.pass.cpp 108 static_assert((std::is_same<decltype(mbtowc(pw,"",0)), int>::value), "");
  /prebuilts/clang/host/darwin-x86/clang-4053586/include/c++/v1/
__bsd_locale_fallbacks.h 81 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/c++/v1/
__bsd_locale_fallbacks.h 79 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/
__bsd_locale_fallbacks.h 79 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/
__bsd_locale_fallbacks.h 83 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/
__bsd_locale_fallbacks.h 83 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/c++/v1/
__bsd_locale_fallbacks.h 83 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/
__bsd_locale_fallbacks.h 83 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/
__bsd_locale_fallbacks.h 81 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/
__bsd_locale_fallbacks.h 79 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/
__bsd_locale_fallbacks.h 79 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/
__bsd_locale_fallbacks.h 83 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/
__bsd_locale_fallbacks.h 83 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/
__bsd_locale_fallbacks.h 83 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/
__bsd_locale_fallbacks.h 83 return mbtowc(__pwc, __pmb, __max);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/
__bsd_locale_fallbacks.h 79 return mbtowc(__pwc, __pmb, __max);

Completed in 598 milliseconds

1 2