Lines Matching defs:count
69 int count = 0;
72 count++;
84 return count;
90 int count = 0;
93 count++;
105 return count;
217 const char* SkParse::FindScalars(const char str[], SkScalar value[], int count)
219 SkASSERT(count >= 0);
221 if (count > 0)
226 if (--count == 0 || str == nullptr)
238 static bool lookup_str(const char str[], const char** table, int count)
240 while (--count >= 0)
241 if (!strcmp(str, table[count]))