/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);
|
/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)
|
wchar.h | 17 WEOF Wide char version of end-of-file.
24 wint_t Type capable of holding all wchar_t values and WEOF.
149 - WEOF might be a different value than that of EOF.
150 - WEOF might not be negative.
203 extended character set: WEOF.
220 #ifndef WEOF
221 /** WEOF expands to a constant expression of type wint_t whose value does not
228 #define WEOF ((wint_t)-1)
[all...] |
/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)
|
/external/libcxx/test/std/strings/c.strings/ |
cwctype.pass.cpp | 18 #ifndef WEOF 19 #error WEOF not defined
|
cwchar.pass.cpp | 31 #ifndef WEOF 32 #error WEOF not defined
|
/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
|
/bionic/tests/headers/posix/ |
wctype_h.c | 39 MACRO(WEOF);
|