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

  /external/skia/legacy/src/utils/
SkParse.cpp 12 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'))
SkParsePath.cpp 11 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/utils/
SkParse.cpp 12 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'))
SkParsePath.cpp 11 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/legacy/src/animator/
SkParseSVGPath.cpp 55 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');
SkScript.cpp 158 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') ||
    [all...]
SkScriptTokenizer.cpp 100 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') ||
    [all...]
SkMemberInfo.cpp 167 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'))
  /external/skia/src/animator/
SkParseSVGPath.cpp 55 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');
SkScript.cpp 158 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') ||
    [all...]
SkScriptTokenizer.cpp 100 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') ||
    [all...]
SkMemberInfo.cpp 167 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 115 milliseconds