Lines Matching refs:qpatnext
477 const Char *qpatnext; local
482 qpatnext = globtilde(pattern, patbuf, PATH_MAX, pglob);
487 while ((c = *qpatnext++) != EOS) {
490 c = *qpatnext;
492 ++qpatnext;
493 if (*qpatnext == EOS ||
494 g_strchr(qpatnext+1, RBRACKET) == NULL) {
497 --qpatnext;
503 c = *qpatnext++;
505 if (c == LBRACKET && *qpatnext == ':') {
507 err = g_charclass(&qpatnext,
511 c = *qpatnext++;
512 } while (c == LBRACKET && *qpatnext == ':');
520 if (*qpatnext == RANGE &&
521 (c = qpatnext[1]) != RBRACKET) {
524 qpatnext += 2;
526 } while ((c = *qpatnext++) != RBRACKET);