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

1 2 3

  /external/libcxx/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
eof.pass.cpp 21 assert(std::char_traits<wchar_t>::eof() == WEOF);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/char.traits/char.traits.specializations/char.traits.specializations.wchar.t/
eof.pass.cpp 21 assert(std::char_traits<wchar_t>::eof() == WEOF);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
ungetwc.c 47 if (wc == WEOF)
48 return WEOF;
62 return WEOF;
67 return WEOF;
fgetwc.c 60 return WEOF;
67 return WEOF;
84 return WEOF;
92 return WEOF;
109 return (WEOF);
fputwc.c 64 return (WEOF);
76 return WEOF;
84 return WEOF;
91 return WEOF;
105 return (WEOF);
vfwscanf.c 182 while ((c = __fgetwc_unlock(fp)) != WEOF &&
185 if (c != WEOF)
201 if ((wi = __fgetwc_unlock(fp)) == WEOF)
366 while ((wi = __fgetwc_unlock(fp)) != WEOF && iswspace(wi))
368 if (wi == WEOF)
387 (wi = __fgetwc_unlock(fp)) != WEOF) {
403 (wi = __fgetwc_unlock(fp)) != WEOF) {
443 while ((wi = __fgetwc_unlock(fp)) != WEOF &&
446 if (wi != WEOF)
452 while ((wi = __fgetwc_unlock(fp)) != WEOF &&
    [all...]
fputws.c 66 if (__fputwc_unlock(*ws++, fp) == WEOF) {
  /bionic/libc/upstream-openbsd/lib/libc/locale/
btowc.c 41 return (WEOF);
50 return (WEOF);
wctob.c 40 if (c == WEOF || wcrtomb(buf, c, &mbs) != 1)
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
ungetwc.c 42 if (wc == WEOF)
43 return WEOF;
55 return WEOF;
59 return WEOF;
fgetwc.c 49 return WEOF;
66 return WEOF;
73 return WEOF;
fputws.c 48 if (__fputwc_unlock(*ws++, fp) == WEOF) {
fgetws.c 55 if ((wc = __fgetwc_unlock(fp)) == WEOF &&
58 if (wc == WEOF) {
fputwc.c 57 return WEOF;
66 return WEOF;
71 return WEOF;
  /bionic/tests/
wctype_test.cpp 104 EXPECT_EQ(WEOF, towlower(WEOF));
120 EXPECT_EQ(WEOF, towlower(WEOF));
135 EXPECT_EQ(WEOF, towupper(WEOF));
151 EXPECT_EQ(WEOF, towupper_l(WEOF, l.l));
205 EXPECT_EQ(0, iswctype(WEOF, wctype("alnum")));
214 EXPECT_EQ(0, iswctype_l(WEOF, wctype_l("alnum", l.l), l.l))
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/
wctype.h 6 WEOF Wide char version of end-of-file.
11 wint_t Type capable of holding all wchar_t values and WEOF.
92 extended character set: WEOF.
112 #ifndef WEOF
113 /** WEOF expands to a constant expression of type wint_t whose value does not
120 #define WEOF ((wint_t)-1)
  /bionic/libc/stdio/
vfwscanf.c 165 while ((c = __fgetwc_unlock(fp)) != WEOF && iswspace(c))
167 if (c != WEOF) __ungetwc(c, fp);
182 if ((wi = __fgetwc_unlock(fp)) == WEOF) goto input_failure;
354 while ((wi = __fgetwc_unlock(fp)) != WEOF && iswspace(wi)) nread++;
355 if (wi == WEOF) goto input_failure;
369 while (width-- != 0 && (wi = __fgetwc_unlock(fp)) != WEOF) {
380 while (width != 0 && (wi = __fgetwc_unlock(fp)) != WEOF) {
411 while ((wi = __fgetwc_unlock(fp)) != WEOF && width-- != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || (c == CT_STRING && !iswspace(wi)))) n++;
412 if (wi != WEOF) __ungetwc(wi, fp);
415 while ((wi = __fgetwc_unlock(fp)) != WEOF && width-- != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || (c == CT_STRING && !iswspace(wi))))
    [all...]
parsefloat.c 208 c = WEOF;
210 if ((c = __fgetwc_unlock(fp)) == WEOF)
325 c = WEOF;
329 if (c != WEOF)
  /bionic/libc/include/bits/
wctype.h 38 #define WEOF __BIONIC_CAST(static_cast, wint_t, -1)
  /device/linaro/bootloader/edk2/StdLib/LibC/Locale/
multibyte_sb.c 271 return WEOF;
283 if (c == WEOF) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/InteractiveIO/
CanonRead.c 90 if (InChar == WEOF) {
134 InChar = WEOF;
  /external/libcxx/test/std/depr/depr.c.headers/
wctype_h.pass.cpp 15 #ifndef WEOF
16 #error WEOF not defined
  /external/libcxx/test/std/strings/c.strings/
cwctype.pass.cpp 15 #ifndef WEOF
16 #error WEOF not defined
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
wctype_h.pass.cpp 15 #ifndef WEOF
16 #error WEOF not defined
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/c.strings/
cwctype.pass.cpp 15 #ifndef WEOF
16 #error WEOF not defined

Completed in 396 milliseconds

1 2 3