Lines Matching refs:command
33 void operator()(const T& command) { in operator ()() argument
35 fDraw(command); in operator ()()
36 this->print(command, SkTime::GetNSecs() - start); in operator ()()
44 void print(const T& command, double ns) { in print() argument
45 this->printNameAndTime(command, ns); in print()
48 void print(const SkRecords::Restore& command, double ns) { in print() argument
50 this->printNameAndTime(command, ns); in print()
53 void print(const SkRecords::Save& command, double ns) { in print() argument
54 this->printNameAndTime(command, ns); in print()
58 void print(const SkRecords::SaveLayer& command, double ns) { in print() argument
59 this->printNameAndTime(command, ns); in print()
63 void print(const SkRecords::DrawPicture& command, double ns) { in print() argument
64 this->printNameAndTime(command, ns); in print()
66 if (auto bp = command.picture->asSkBigPicture()) { in print()
79 void print(const SkRecords::DrawAnnotation& command, double ns) { in print() argument
92 command.rect.left(), command.rect.top(), command.rect.right(), command.rect.bottom(), in print()
93 command.key.c_str()); in print()
99 void printNameAndTime(const T& command, double ns) { in printNameAndTime() argument
111 puts(NameOf(command)); in printNameAndTime()