Lines Matching defs:Count
73 int SkParse::Count(const char str[])
76 int count = 0;
79 count++;
91 return count;
94 int SkParse::Count(const char str[], char separator)
97 int count = 0;
100 count++;
112 return count;
267 const char* SkParse::FindScalars(const char str[], SkScalar value[], int count)
269 SkASSERT(count >= 0);
271 if (count > 0)
276 if (--count == 0 || str == NULL)
288 static bool lookup_str(const char str[], const char** table, int count)
290 while (--count >= 0)
291 if (!strcmp(str, table[count]))