Home
last modified time | relevance | path

Searched refs:ISDIGIT (Results 1 – 8 of 8) sorted by relevance

/ndk/sources/host-tools/sed-4.2.1/lib/
Dstrverscmp.c48 #define ISDIGIT(c) ((unsigned int) (c) - '0' <= 9) macro
103 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0)); in __strverscmp()
110 state |= (c1 == '0') + (ISDIGIT (c1) != 0); in __strverscmp()
113 state = result_type[state << 2 | ((c2 == '0') + (ISDIGIT (c2) != 0))]; in __strverscmp()
121 while (ISDIGIT (*p1++)) in __strverscmp()
122 if (!ISDIGIT (*p2++)) in __strverscmp()
125 return ISDIGIT (*p2) ? -1 : diff; in __strverscmp()
/ndk/sources/host-tools/make-3.81/glob/
Dfnmatch.c79 # define ISDIGIT(c) (ISASCII (c) && isdigit (c)) macro
380 || (STREQ (str, "digit") && ISDIGIT ((unsigned char) *n))
/ndk/sources/host-tools/sed-4.2.1/
Dbasicdefs.h154 #define ISDIGIT(c) (ISASCII (c) && isdigit (c)) macro
/ndk/sources/host-tools/sed-4.2.1/sed/
Dcompile.c284 while (ISDIGIT(ch))
807 else if (posixicity == POSIXLY_BASIC && !ISDIGIT (*p))
992 else if (ISDIGIT(ch))
1215 if (ISDIGIT(ch) && posixicity != POSIXLY_BASIC)
/ndk/sources/host-tools/make-3.81/
Dmake.h304 #define ISDIGIT(c) ((unsigned) (c) - '0' <= 9) macro
Dmain.c2498 for (cp=argv[optind]; ISDIGIT (cp[0]); ++cp) in decode_switches()
2513 for (cp = optarg; ISDIGIT (cp[0]); ++cp) in decode_switches()
2533 && (ISDIGIT (argv[optind][0]) || argv[optind][0] == '.')) in decode_switches()
Dvariable.c235 && (*name < 'A' || *name > 'Z') && !ISDIGIT(*name)) in define_variable_in_set()
Dfunction.c742 if (!ISDIGIT (*s)) /* ISDIGIT only evals its arg once: see make.h. */ in check_numeric()