isdigit           514 builtin/apply.c 		if (!isdigit(*p))
isdigit           531 builtin/apply.c 	if (!isdigit(*p++) || !isdigit(*p++) || *p++ != ':' ||
isdigit           532 builtin/apply.c 	    !isdigit(*p++) || !isdigit(*p++))
isdigit           546 builtin/apply.c 	if (!isdigit(*p++) || !isdigit(*p++) || *p++ != '-' ||
isdigit           547 builtin/apply.c 	    !isdigit(*p++) || !isdigit(*p++) || *p++ != '-' ||
isdigit           548 builtin/apply.c 	    !isdigit(*p++) || !isdigit(*p++))	/* Not a date. */
isdigit           552 builtin/apply.c 	    isdigit(date[-1]) && isdigit(date[-2]))	/* 4-digit year */
isdigit           568 builtin/apply.c 	    !isdigit(*p++) || !isdigit(*p++) || *p++ != ':' ||
isdigit           569 builtin/apply.c 	    !isdigit(*p++) || !isdigit(*p++) || *p++ != ':' ||
isdigit           570 builtin/apply.c 	    !isdigit(*p++) || !isdigit(*p++))	/* Not a time. */
isdigit           582 builtin/apply.c 	if (!len || !isdigit(line[len - 1]))
isdigit           587 builtin/apply.c 	while (p > line && isdigit(*p))
isdigit           629 builtin/apply.c 	if (!isdigit(end[-1]))
isdigit          1335 builtin/apply.c 	if (!isdigit(*line))
isdigit           509 builtin/clean.c 			} else if (!isdigit(*p)) {
isdigit           210 builtin/clone.c 		while (start < ptr && isdigit(ptr[-1]) && ptr[-1] != ':')
isdigit            31 builtin/mailsplit.c 	if (!isdigit(colon[-4]) ||
isdigit            32 builtin/mailsplit.c 	    !isdigit(colon[-2]) ||
isdigit            33 builtin/mailsplit.c 	    !isdigit(colon[-1]) ||
isdigit            34 builtin/mailsplit.c 	    !isdigit(colon[ 1]) ||
isdigit            35 builtin/mailsplit.c 	    !isdigit(colon[ 2]))
isdigit           130 builtin/mailsplit.c 		if (isdigit(*a) && isdigit(*b)) {
isdigit           481 builtin/merge.c 			while (*++ptr && isdigit(*ptr)) {
isdigit           266 builtin/name-rev.c #define ishex(x) (isdigit((x)) || ((x) >= 'a' && (x) <= 'f'))
isdigit            80 builtin/rev-parse.c 	if ((*arg == '-') && isdigit(arg[1]))
isdigit          3585 compat/regex/regcomp.c     BUILD_CHARCLASS_LOOP (isdigit);
isdigit           220 contrib/convert-objects/convert-objects.c 	if (isdigit(*date)) {
isdigit           428 date.c         	if (*end == c && isdigit(end[1]))
isdigit           527 date.c         		if (isdigit(end[1])) {
isdigit           542 date.c         	} while (isdigit(date[n]));
isdigit           705 date.c         		else if (isdigit(c))
isdigit           707 date.c         		else if ((c == '-' || c == '+') && isdigit(date[1]))
isdigit          1046 date.c         		if (isdigit(end[1])) {
isdigit          1109 date.c         		if (isdigit(c)) {
isdigit           103 diff.c         		} else if (isdigit(*p)) {
isdigit           106 diff.c         			if (*end == '.' && isdigit(*++end)) {
isdigit           110 diff.c         				while (isdigit(*++end))
isdigit          3415 diff.c         		if (val && isdigit(c)) {
isdigit          3435 diff.c         		if (!isdigit(*++eq))
isdigit           595 fsck.c         	    !isdigit(p[1]) ||
isdigit           596 fsck.c         	    !isdigit(p[2]) ||
isdigit           597 fsck.c         	    !isdigit(p[3]) ||
isdigit           598 fsck.c         	    !isdigit(p[4]) ||
isdigit           223 parse-options.c 	if (numopt && isdigit(*p->opt)) {
isdigit           228 parse-options.c 		while (isdigit(p->opt[len]))
isdigit          3707 refs.c         	    !isdigit(message[2]) || !isdigit(message[3]) ||
isdigit          3708 refs.c         	    !isdigit(message[4]) || !isdigit(message[5]))
isdigit          1732 revision.c     	} else if ((*arg == '-') && isdigit(arg[1])) {
isdigit            33 test-ctype.c   	TEST_CLASS(isdigit, DIGIT);
isdigit            49 trace.c        	else if (strlen(trace) == 1 && isdigit(*trace))
isdigit            19 utf8.c         	while (isdigit(*p) || *p == ';')
isdigit           434 vcs-svn/svndump.c 				if (!isdigit(*val) || *end)
isdigit           108 versioncmp.c   	state = S_N + ((c1 == '0') + (isdigit (c1) != 0));
isdigit           117 versioncmp.c   		state += (c1 == '0') + (isdigit (c1) != 0);
isdigit           127 versioncmp.c   	state = result_type[state * 3 + (((c2 == '0') + (isdigit (c2) != 0)))];
isdigit           134 versioncmp.c   		while (isdigit (*p1++))
isdigit           135 versioncmp.c   			if (!isdigit (*p2++))
isdigit           138 versioncmp.c   		return isdigit (*p2) ? -1 : diff;
isdigit            44 wildmatch.c    #define ISDIGIT(c) (ISASCII(c) && isdigit(c))