Home | History | Annotate | Download | only in openbsd-compat

Lines Matching full:qpatnext

473 	const Char *qpatnext;
477 qpatnext = globtilde(pattern, patbuf, MAXPATHLEN, pglob);
482 while ((c = *qpatnext++) != EOS) {
485 c = *qpatnext;
487 ++qpatnext;
488 if (*qpatnext == EOS ||
489 g_strchr(qpatnext+1, RBRACKET) == NULL) {
492 --qpatnext;
498 c = *qpatnext++;
500 if (c == LBRACKET && *qpatnext == ':') {
502 err = g_charclass(&qpatnext,
506 c = *qpatnext++;
507 } while (c == LBRACKET && *qpatnext == ':');
515 if (*qpatnext == RANGE &&
516 (c = qpatnext[1]) != RBRACKET) {
519 qpatnext += 2;
521 } while ((c = *qpatnext++) != RBRACKET);