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

Lines Matching full:qpatnext

460 	const Char *qpatnext;
464 qpatnext = globtilde(pattern, patbuf, MAXPATHLEN, pglob);
469 while ((c = *qpatnext++) != EOS) {
472 c = *qpatnext;
474 ++qpatnext;
475 if (*qpatnext == EOS ||
476 g_strchr(qpatnext+1, RBRACKET) == NULL) {
479 --qpatnext;
485 c = *qpatnext++;
487 if (c == LBRACKET && *qpatnext == ':') {
489 err = g_charclass(&qpatnext,
493 c = *qpatnext++;
494 } while (c == LBRACKET && *qpatnext == ':');
502 if (*qpatnext == RANGE &&
503 (c = qpatnext[1]) != RBRACKET) {
506 qpatnext += 2;
508 } while ((c = *qpatnext++) != RBRACKET);