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

  /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...]
  /bionic/libc/bionic/
wchar.cpp 163 size_t mbrtowc(wchar_t* pwc, const char* s, size_t n, mbstate_t* /*ps*/) { function
  /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 28 milliseconds