Home
last modified time | relevance | path

Searched refs:CHAR_9 (Results 1 – 4 of 4) sorted by relevance

/external/pcre/dist2/src/
Dpcre2_substitute.c481 if (!star && next >= CHAR_0 && next <= CHAR_9) in pcre2_substitute()
487 if (next < CHAR_0 || next > CHAR_9) break; in pcre2_substitute()
499 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9); in pcre2_substitute()
Dpcre2_internal.h703 #define CHAR_9 '9' macro
975 #define CHAR_9 '\071' macro
Dpcre2_compile.c387 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
540 #define ESCAPES_LAST CHAR_9
1647 case CHAR_6: case CHAR_7: case CHAR_8: case CHAR_9: in PRIV()
3761 case CHAR_5: case CHAR_6: case CHAR_7: case CHAR_8: case CHAR_9: in parse_regex()
Dpcre2test.c7017 while ((c = *(++pr)) >= CHAR_0 && c <= CHAR_9) n = n * 10 + c - CHAR_0; in process_data()