Lines Matching refs:qpatnext
452 const Char *qpatnext; in glob0() local
460 if ((qpatnext = globtilde(pattern, patbuf, sizeof(patbuf), in glob0()
467 while ((c = *qpatnext++) != EOS) { in glob0()
470 c = *qpatnext; in glob0()
472 ++qpatnext; in glob0()
473 if (*qpatnext == EOS || in glob0()
474 g_strchr(qpatnext+1, RBRACKET) == NULL) { in glob0()
477 --qpatnext; in glob0()
483 c = *qpatnext++; in glob0()
486 if (*qpatnext == RANGE && in glob0()
487 (c = qpatnext[1]) != RBRACKET) { in glob0()
490 qpatnext += 2; in glob0()
492 } while ((c = *qpatnext++) != RBRACKET); in glob0()