Searched refs:CHAR_9 (Results 1 - 3 of 3) sorted by relevance

/external/pcre/dist2/src/
H A Dpcre2_substitute.c451 if (!star && next >= CHAR_0 && next <= CHAR_9)
457 if (next < CHAR_0 || next > CHAR_9) break;
469 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9);
H A Dpcre2_compile.c188 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
341 #define ESCAPES_LAST CHAR_9
2034 case CHAR_6: case CHAR_7: case CHAR_8: case CHAR_9:
6819 case CHAR_5: case CHAR_6: case CHAR_7: case CHAR_8: case CHAR_9:
H A Dpcre2test.c6148 while ((c = *(++pr)) >= CHAR_0 && c <= CHAR_9) n = n * 10 + c - CHAR_0;

Completed in 118 milliseconds