Home
last modified time | relevance | path

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

/external/openssh/openbsd-compat/
Dvis.c45 #define isoctal(c) (((u_char)(c)) >= '0' && ((u_char)(c)) <= '7') macro
110 if (isoctal(nextc)) { in vis()
/external/python/cpython2/Lib/
Dsre_parse.py815 isoctal = False
821 isoctal = True
823 if not isoctal:
/external/ppp/pppd/
Doptions.c1150 #define isoctal(c) ((c) >= '0' && (c) < '8') macro
1255 if (isoctal(c)) {
1260 for (n = 0; n < 3 && isoctal(c); ++n) {
1377 #undef isoctal
/external/python/cpython3/Lib/
Dsre_parse.py1005 isoctal = False
1011 isoctal = True
1017 if not isoctal: