Home
last modified time | relevance | path

Searched refs:CT_CCL (Results 1 – 2 of 2) sorted by relevance

/bionic/libc/stdio/
Dvfscanf.cpp77 #define CT_CCL 1 // %[...] conversion macro
251 c = CT_CCL; in __svfscanf()
420 case CT_CCL: in __svfscanf()
438 while ((c == CT_CCL || !isspace(*fp->_p)) && width != 0) { in __svfscanf()
454 … if ((c == CT_CCL && wctob(wc) != EOF && !ccltab[wctob(wc)]) || (c == CT_STRING && iswspace(wc))) { in __svfscanf()
482 if (c == CT_CCL && bytes != 0) { in __svfscanf()
496 if (c == CT_CCL && n == 0) goto input_failure; in __svfscanf()
521 if (c == CT_CCL && n == 0) goto input_failure; in __svfscanf()
531 if (c == CT_CCL && n == 0) goto match_failure; in __svfscanf()
Dvfwscanf.cpp85 #define CT_CCL 1 /* %[...] conversion */ macro
306 c = CT_CCL; in __vfwscanf()
410 case CT_CCL: in __vfwscanf()
417 …while ((wi = __fgetwc_unlock(fp)) != WEOF && width-- != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || … in __vfwscanf()
421 …while ((wi = __fgetwc_unlock(fp)) != WEOF && width-- != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || … in __vfwscanf()
430 …while ((wi = __fgetwc_unlock(fp)) != WEOF && width != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || (c… in __vfwscanf()
446 if (c == CT_CCL && n == 0) goto match_failure; in __vfwscanf()