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

  /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
  /bionic/tests/
wchar_test.cpp 235 TEST(wchar, mbtowc) {
239 ASSERT_EQ(0, mbtowc(out, "hello", 0));
242 ASSERT_EQ(0, mbtowc(out, "hello", 0));
243 ASSERT_EQ(0, mbtowc(out, "", 0));
244 ASSERT_EQ(1, mbtowc(out, "hello", 1));
247 ASSERT_EQ(0, mbtowc(NULL, "hello", 0));
248 ASSERT_EQ(0, mbtowc(NULL, "", 0));
249 ASSERT_EQ(1, mbtowc(NULL, "hello", 1));
251 ASSERT_EQ(0, mbtowc(NULL, NULL, 0));
  /bionic/libstdc++/include/
cstdlib 109 using ::mbtowc;
  /bionic/libc/include/
stdlib.h 158 extern int mbtowc(wchar_t *, const char *, size_t);
  /development/ndk/platforms/android-L/include/
stdlib.h 166 extern int mbtowc(wchar_t *, const char *, size_t);
  /external/bison/darwin-lib/
stdlib.h 620 # undef mbtowc
621 # define mbtowc rpl_mbtowc
623 _GL_FUNCDECL_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
624 _GL_CXXALIAS_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
626 _GL_CXXALIAS_SYS (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
628 _GL_CXXALIASWARN (mbtowc);
    [all...]
  /external/bison/linux-lib/
stdlib.h 620 # undef mbtowc
621 # define mbtowc rpl_mbtowc
623 _GL_FUNCDECL_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
624 _GL_CXXALIAS_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
626 _GL_CXXALIAS_SYS (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
628 _GL_CXXALIASWARN (mbtowc);
    [all...]
  /external/bison/lib/
stdlib.in.h 298 # undef mbtowc
299 # define mbtowc rpl_mbtowc
301 _GL_FUNCDECL_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
302 _GL_CXXALIAS_RPL (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
304 _GL_CXXALIAS_SYS (mbtowc, int, (wchar_t *pwc, const char *s, size_t n));
306 _GL_CXXALIASWARN (mbtowc);
mbrtowc.c 24 /* Implement mbrtowc() on top of mbtowc(). */
97 mbtowc (NULL, NULL, 0);
100 int res = mbtowc (pwc, p, m);
113 /* mbtowc does not distinguish between invalid and incomplete multibyte
vasnprintf.c     [all...]
  /development/ndk/platforms/android-3/include/
stdlib.h 172 extern int mbtowc(wchar_t *, const char *, size_t);
  /development/ndk/platforms/android-8/include/
stdlib.h 173 extern int mbtowc(wchar_t *, const char *, size_t);
  /development/ndk/platforms/android-9/include/
stdlib.h 173 extern int mbtowc(wchar_t *, const char *, size_t);
  /external/libedit/src/
chartype.h 67 #define ct_mbtowc mbtowc
68 #define ct_mbtowc_reset mbtowc(0,0,(size_t)0)
vis.c 409 clen = mbtowc(src, mbsrc, MB_LEN_MAX);
  /external/libcxx/test/depr/depr.c.headers/
stdlib_h.pass.cpp 78 static_assert((std::is_same<decltype(mbtowc(pw,"",0)), int>::value), "");
  /external/libcxx/test/language.support/support.runtime/
cstdlib.pass.cpp 82 static_assert((std::is_same<decltype(std::mbtowc(pw,"",0)), int>::value), "");
  /external/libcxx/src/support/solaris/
xlocale.c 59 return __l->lc_ctype->cmapp->core.user_api->mbtowc(__l->lc_ctype->cmapp,
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 483 INTERCEPTOR(int, mbtowc, wchar_t *dest, const char *src, SIZE_T n) {
485 int res = REAL(mbtowc)(dest, src, n);
    [all...]
  /bionic/libc/
Android.mk 353 upstream-openbsd/lib/libc/locale/mbtowc.c \
    [all...]
  /external/compiler-rt/lib/msan/tests/
msan_test.cc     [all...]
  /external/bison/
configure     [all...]

Completed in 357 milliseconds