Lines Matching refs:qpatnext
476 const Char *qpatnext; in glob0() local
484 if ((qpatnext = globtilde(pattern, patbuf, sizeof(patbuf), in glob0()
491 while ((c = *qpatnext++) != EOS) { in glob0()
494 c = *qpatnext; in glob0()
496 ++qpatnext; in glob0()
497 if (*qpatnext == EOS || in glob0()
498 g_strchr(qpatnext+1, RBRACKET) == NULL) { in glob0()
501 --qpatnext; in glob0()
507 c = *qpatnext++; in glob0()
510 if (*qpatnext == RANGE && in glob0()
511 (c = qpatnext[1]) != RBRACKET) { in glob0()
514 qpatnext += 2; in glob0()
516 } while ((c = *qpatnext++) != RBRACKET); in glob0()