Home
last modified time | relevance | path

Searched refs:CHAR_0 (Results 1 – 7 of 7) sorted by relevance

/third_party/pcre2/pcre2/src/
Dpcre2_substitute.c569 if (!star && next >= CHAR_0 && next <= CHAR_9) in pcre2_substitute()
571 group = next - CHAR_0; in pcre2_substitute()
575 if (next < CHAR_0 || next > CHAR_9) break; in pcre2_substitute()
576 group = group * 10 + next - CHAR_0; in pcre2_substitute()
587 while (++ptr < repend && *ptr >= CHAR_0 && *ptr <= CHAR_9); in pcre2_substitute()
Dpcre2_compile.c408 #define IS_DIGIT(x) ((x) >= CHAR_0 && (x) <= CHAR_9)
507 #define ESCAPES_FIRST CHAR_0
1345 n = n * 10 + *ptr++ - CHAR_0; in read_number()
1833 case CHAR_0: in PRIV()
1834 c -= CHAR_0; in PRIV()
1835 while(i++ < 2 && ptr < ptrend && *ptr >= CHAR_0 && *ptr <= CHAR_7) in PRIV()
1836 c = c * 8 + *ptr++ - CHAR_0; in PRIV()
1857 while (ptr < ptrend && *ptr >= CHAR_0 && *ptr <= CHAR_7) in PRIV()
1860 if (c == 0 && cc == CHAR_0) continue; /* Leading zeroes */ in PRIV()
1864 c = (c << 3) + (cc - CHAR_0); in PRIV()
[all …]
Dpcre2_internal.h702 #define CHAR_0 '0' macro
999 #define CHAR_0 '\060' macro
Dpcre2test.c7382 while ((c = *(++pr)) >= CHAR_0 && c <= CHAR_9) n = n * 10 + c - CHAR_0; in process_data()
/third_party/node/lib/internal/
Dconstants.js52 CHAR_0: 48, /* 0 */ property
/third_party/node/lib/
Durl.js135 CHAR_0,
489 (code >= CHAR_0 && code <= CHAR_9) ||
/third_party/node/tools/
Dlint-md.mjs2027 CHAR_0: 48, /* 0 */ property
5375 CHAR_0: '0', /* 0 */ property