HomeSort by relevance Sort by last modified time
    Searched defs:mbrtowc (Results 1 - 6 of 6) sorted by null

  /ndk/sources/android/support/src/musl-multibyte/
mbrtowc.c 11 size_t mbrtowc(wchar_t *restrict wc, const char *restrict src, size_t n, mbstate_t *restrict st) function
  /bionic/libc/bionic/
wchar.cpp 60 size_t mbrtowc(wchar_t* pwc, const char* s, size_t n, mbstate_t* ps) { function
92 r = mbrtowc(NULL, *src + i, nmc - i, state);
127 r = mbrtowc(dst + o, *src + i, nmc - i, state);
  /external/bison/lib/
mbrtowc.c 24 /* Implement mbrtowc() on top of mbtowc(). */
39 mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) function
114 sequences. But mbrtowc needs to make this distinction.
119 lack mbrtowc(), we use the second approach.
324 /* Override the system's mbrtowc() function. */
326 # undef mbrtowc macro
344 /* Override mbrtowc's internal state. We cannot call mbsinit() on the
356 size_t ret = mbrtowc (&wc, s, 1, ps);
377 size_t ret = mbrtowc (&wc, s, n, ps);
397 return mbrtowc (pwc, s, n, ps)
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
mbrtowc.c 24 /* Implement mbrtowc() on top of mbtowc(). */
39 mbrtowc (wchar_t *pwc, const char *s, size_t n, mbstate_t *ps) function
113 sequences. But mbrtowc needs to make this distinction.
118 lack mbrtowc(), we use the second approach.
317 /* Override the system's mbrtowc() function. */
319 # undef mbrtowc macro
337 /* Override mbrtowc's internal state. We can not call mbsinit() on the
349 size_t ret = mbrtowc (&wc, s, 1, ps);
370 size_t ret = mbrtowc (&wc, s, n, ps);
382 return mbrtowc (pwc, s, n, ps)
    [all...]
  /external/bison/darwin-lib/
wchar.h 440 implementing mbrtowc for encodings like UTF-8. */
531 # undef mbrtowc
532 # define mbrtowc rpl_mbrtowc
534 _GL_FUNCDECL_RPL (mbrtowc, size_t,
536 _GL_CXXALIAS_RPL (mbrtowc, size_t,
540 _GL_FUNCDECL_SYS (mbrtowc, size_t,
543 _GL_CXXALIAS_SYS (mbrtowc, size_t,
546 _GL_CXXALIASWARN (mbrtowc); variable
548 # undef mbrtowc macro
550 _GL_WARN_ON_USE (mbrtowc, "mbrtowc is unportable -
    [all...]
  /external/bison/linux-lib/
wchar.h 440 implementing mbrtowc for encodings like UTF-8. */
531 # undef mbrtowc
532 # define mbrtowc rpl_mbrtowc
534 _GL_FUNCDECL_RPL (mbrtowc, size_t,
536 _GL_CXXALIAS_RPL (mbrtowc, size_t,
540 _GL_FUNCDECL_SYS (mbrtowc, size_t,
543 _GL_CXXALIAS_SYS (mbrtowc, size_t,
546 _GL_CXXALIASWARN (mbrtowc); variable
548 # undef mbrtowc macro
550 _GL_WARN_ON_USE (mbrtowc, "mbrtowc is unportable -
    [all...]

Completed in 201 milliseconds