Searched refs:is_between (Results 1 - 6 of 6) sorted by relevance

/external/skia/src/utils/
H A DSkParse.cpp12 static inline bool is_between(int c, int min, int max) function
19 return is_between(c, 1, 32);
24 return is_between(c, '0', '9');
38 if (is_between(c, 'a', 'f'))
H A DSkParsePath.cpp11 static inline bool is_between(int c, int min, int max) { function
16 return is_between(c, 1, 32);
20 return is_between(c, '0', '9');
28 return is_between(c, 'a', 'z');
/external/skia/src/animator/
H A DSkParseSVGPath.cpp55 static inline bool is_between(int c, int min, int max) function
62 return is_between(c, 1, 32);
67 return is_between(c, '0', '9');
H A DSkScript.cpp158 static inline bool is_between(int c, int min, int max) function
165 return is_between(c, 1, 32);
170 if (! is_between(ch, 'a' , 'z') && ! is_between(ch, 'A', 'Z') && ch != '_' && ch != '$')
175 while (is_between(ch, 'a' , 'z') || is_between(ch, 'A', 'Z') || is_between(ch, '0', '9') ||
H A DSkScriptTokenizer.cpp100 static inline bool is_between(int c, int min, int max) function
107 return is_between(c, 1, 32);
112 if (! is_between(ch, 'a' , 'z') && ! is_between(ch, 'A', 'Z') && ch != '_' && ch != '$')
117 while (is_between(ch, 'a' , 'z') || is_between(ch, 'A', 'Z') || is_between(ch, '0', '9') ||
H A DSkMemberInfo.cpp167 static inline bool is_between(int c, int min, int max) function
174 if (is_between(c, '0', '9'))
177 if (is_between(c, 'a', 'f'))

Completed in 233 milliseconds