Lines Matching refs:count
273 int count = 0; in _numberCount() local
281 count = 2; in _numberCount()
288 count = 6; in _numberCount()
295 count = 1; in _numberCount()
302 count = 4; in _numberCount()
307 count = 7; in _numberCount()
313 return count; in _numberCount()
317 …nd(Array<PathCommand>* cmds, Array<Point>* pts, char cmd, float* arr, int count, Point* cur, Point… in _processCommand() argument
326 for (int i = 0; i < count - 1; i += 2) { in _processCommand()
386 if ((cmds->count > 1) && (cmds->last() == PathCommand::CubicTo) && in _processCommand()
427 if ((cmds->count > 1) && (cmds->last() == PathCommand::CubicTo) && in _processCommand()
495 static char* _nextCommand(char* path, char* cmd, float* arr, int* count, bool* closed) in _nextCommand() argument
503 *count = _numberCount(*cmd); in _nextCommand()
511 if (*count == 7) { in _nextCommand()
530 *count = 0; in _nextCommand()
533 for (int i = 0; i < *count; i++) { in _nextCommand()
535 *count = 0; in _nextCommand()
563 auto lastCmds = cmds.count; in svgPathToShape()
572 if (cmds.count > lastCmds && cmds[lastCmds] != PathCommand::MoveTo) return false; in svgPathToShape()