HomeSort by relevance Sort by last modified time
    Searched refs:CT_STRING (Results 1 - 4 of 4) sorted by null

  /bionic/libc/stdio/
vfwscanf.c 83 #define CT_STRING 2 /* %s conversion */
290 c = CT_STRING;
405 case CT_STRING:
407 // CT_STRING: like CCL, but zero-length string OK, & no NOSKIP.
411 while ((wi = __fgetwc_unlock(fp)) != WEOF && width-- != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || (c == CT_STRING && !iswspace(wi)))) n++;
415 while ((wi = __fgetwc_unlock(fp)) != WEOF && width-- != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || (c == CT_STRING && !iswspace(wi)))) {
424 while ((wi = __fgetwc_unlock(fp)) != WEOF && width != 0 && ((c == CT_CCL && in_ccl(wi, ccl)) || (c == CT_STRING && !iswspace(wi)))) {
vfscanf.cpp 76 #define CT_STRING 2 // %s conversion
240 c = CT_STRING;
295 if ((flags & ALLOCATE) != 0 && c > CT_STRING) {
416 case CT_STRING:
418 // CT_STRING: like CCL, but zero-length string OK, & no NOSKIP.
449 if ((c == CT_CCL && wctob(wc) != EOF && !ccltab[wctob(wc)]) || (c == CT_STRING && iswspace(wc))) {
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vfscanf.c 112 #define CT_STRING 2 /* %s conversion */
311 c = CT_STRING;
584 case CT_STRING:
vfwscanf.c 112 #define CT_STRING 2 /* %s conversion */
294 c = CT_STRING;
501 case CT_STRING:

Completed in 99 milliseconds