Searched refs:ctype_digit (Results 1 – 8 of 8) sorted by relevance
/external/pcre/ |
D | pcre_compile.c | 679 if (*p != CHAR_MINUS && (digitab[*p] & ctype_digit) == 0) break; in check_escape() 698 while ((digitab[ptr[1]] & ctype_digit) != 0) in check_escape() 751 while ((digitab[ptr[1]] & ctype_digit) != 0) in check_escape() 1017 if ((digitab[*p++] & ctype_digit) == 0) return FALSE; in is_counted_repeat() 1018 while ((digitab[*p] & ctype_digit) != 0) p++; in is_counted_repeat() 1024 if ((digitab[*p++] & ctype_digit) == 0) return FALSE; in is_counted_repeat() 1025 while ((digitab[*p] & ctype_digit) != 0) p++; in is_counted_repeat() 1060 while ((digitab[*p] & ctype_digit) != 0) min = min * 10 + *p++ - CHAR_0; in read_repeat_counts() 1075 while((digitab[*p] & ctype_digit) != 0) max = max * 10 + *p++ - CHAR_0; in read_repeat_counts() 2677 return next > 127 || (cd->ctypes[next] & ctype_digit) == 0; in check_auto_possessive() [all …]
|
D | pcre_maketables.c | 127 if (isdigit(i)) x += ctype_digit; in pcre_maketables()
|
D | dftables.c | 168 ctype_space, ctype_letter, ctype_digit, ctype_xdigit, ctype_word, in main()
|
D | pcre_exec.c | 1902 (md->ctypes[c] & ctype_digit) != 0 in match() 1919 (md->ctypes[c] & ctype_digit) == 0 in match() 3924 if (c < 128 && (md->ctypes[c] & ctype_digit) != 0) in match() 3937 if (*eptr >= 128 || (md->ctypes[*eptr++] & ctype_digit) == 0) in match() 4156 if ((md->ctypes[*eptr++] & ctype_digit) != 0) MRRETURN(MATCH_NOMATCH); in match() 4168 if ((md->ctypes[*eptr++] & ctype_digit) == 0) MRRETURN(MATCH_NOMATCH); in match() 4581 if (c < 256 && (md->ctypes[c] & ctype_digit) != 0) in match() 4586 if (c >= 256 || (md->ctypes[c] & ctype_digit) == 0) in match() 4707 if ((md->ctypes[c] & ctype_digit) != 0) MRRETURN(MATCH_NOMATCH); in match() 4711 if ((md->ctypes[c] & ctype_digit) == 0) MRRETURN(MATCH_NOMATCH); in match() [all …]
|
D | pcre_dfa_exec.c | 232 ctype_digit, ctype_digit, 240 ctype_digit, 0,
|
D | pcre_internal.h | 1763 #define ctype_digit 0x04 macro
|
/external/libvpx/examples/includes/geshi/docs/ |
D | geshi-doc.txt | 1222 'ctype_lower','ctype_graph','ctype_digit','ctype_cntrl','ctype_alpha','ctype_alnum',
|
/external/webkit/Source/JavaScriptCore/ |
D | ChangeLog-2008-08-10 | 26708 (main): Removed unneeded ctype_digit. 26717 (check_escape): Changed return type to be enum instead of int. Replaced ctype_digit 26752 should find a place to put those back. Removed ctype_digit. 26758 loop. Removed ctype_digit.
|