Lines Matching refs:command
34 void operator()(const T& command) { in operator ()() argument
36 fDraw(command); in operator ()()
37 this->print(command, SkTime::GetNSecs() - start); in operator ()()
45 void print(const T& command, double ns) { in print() argument
46 this->printNameAndTime(command, ns); in print()
49 void print(const SkRecords::Restore& command, double ns) { in print() argument
51 this->printNameAndTime(command, ns); in print()
54 void print(const SkRecords::Save& command, double ns) { in print() argument
55 this->printNameAndTime(command, ns); in print()
59 void print(const SkRecords::SaveLayer& command, double ns) { in print() argument
60 this->printNameAndTime(command, ns); in print()
64 void print(const SkRecords::DrawPicture& command, double ns) { in print() argument
65 this->printNameAndTime(command, ns); in print()
67 if (auto bp = SkPicturePriv::AsSkBigPicture(command.picture)) { in print()
80 void print(const SkRecords::DrawAnnotation& command, double ns) { in print() argument
93 command.rect.left(), command.rect.top(), command.rect.right(), command.rect.bottom(), in print()
94 command.key.c_str()); in print()
100 void printNameAndTime(const T& command, double ns) { in printNameAndTime() argument
112 puts(NameOf(command)); in printNameAndTime()