reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/regcomp.c
  540 		REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
  552 				(c == '{' && MORE2() && isdigit((uch)PEEK2())) ))
  581 			if (isdigit((uch)PEEK())) {
  602 				(c == '{' && MORE2() && isdigit((uch)PEEK2())) ) )
  752 			if (MORE() && isdigit((uch)PEEK())) {
  781 	while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) {
  841 			if (CHIN(cs, i) && isalpha(i)) {
  947 	while (MORE() && isalpha((uch)PEEK()))
 1033 	if (isupper(ch))
 1035 	else if (islower(ch))
 1074 	if ((p->g->cflags&REG_ICASE) && isalpha((uch)ch) && othercase(ch) != ch)
lib/Support/regengine.inc
  541 							!ISWORD(*(sp-1))) ) &&
  542 					(sp < m->endp && ISWORD(*sp)) )
  551 					(sp < m->endp && !ISWORD(*sp)) ) &&
  552 					(sp > m->beginp && ISWORD(*(sp-1))) )
  729 		if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
  730 					(c != OUT && ISWORD(c)) ) {
  733 		if ( (lastc != OUT && ISWORD(lastc)) &&
  734 				(flagch == EOL || (c != OUT && !ISWORD(c))) ) {
  812 		if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
  813 					(c != OUT && ISWORD(c)) ) {
  816 		if ( (lastc != OUT && ISWORD(lastc)) &&
  817 				(flagch == EOL || (c != OUT && !ISWORD(c))) ) {
tools/polly/lib/External/isl/imath/imath.c
 1762   while (isspace((int)*str))
 3042   if (isdigit((unsigned char) c))
 3044   else if (r > 10 && isalpha((unsigned char) c))
tools/polly/lib/External/isl/imath/imrat.c
  692   while (isspace((unsigned char) *endp))
  756   while (isspace((unsigned char) *str))
  795   else if(isspace((unsigned char) *endp) || *endp == '-' || *endp == '+') {
tools/polly/lib/External/isl/isl_stream.c
  393 		} else if (!isspace(c) || (same_line && c == '\n'))
  438 		if (!isdigit(c)) {
  446 	if (c == '-' || isdigit(c)) {
  455 		while ((c = isl_stream_getc(s)) != -1 && isdigit(c))
  473 	if (isalpha(c) || c == '_') {
  479 				(isalnum(c) || c == '_'))