HomeSort by relevance Sort by last modified time
    Searched refs:CHAR_0 (Results 1 - 3 of 3) sorted by null

  /external/pcre/dist2/src/
pcre2_substitute.c 451 if (!star && next >= CHAR_0 && next <= CHAR_9)
453 group = next - CHAR_0;
457 if (next < CHAR_0 || next > CHAR_9) break;
458 group = group * 10 + next - CHAR_0;
469 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9);
pcre2_compile.c 188 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
287 #define ESCAPES_FIRST CHAR_0
    [all...]
pcre2test.c     [all...]

Completed in 54 milliseconds