Lines Matching refs:command
45 void operator()(const T& command) { in operator ()() argument
47 fDraw(command); in operator ()()
48 this->print(command, SkTime::GetNSecs() - start); in operator ()()
56 void print(const T& command, double ns) { in print() argument
57 this->printNameAndTime(command, ns); in print()
60 void print(const SkRecords::Restore& command, double ns) { in print() argument
62 this->printNameAndTime(command, ns); in print()
65 void print(const SkRecords::Save& command, double ns) { in print() argument
66 this->printNameAndTime(command, ns); in print()
70 void print(const SkRecords::SaveLayer& command, double ns) { in print() argument
71 this->printNameAndTime(command, ns); in print()
75 void print(const SkRecords::DrawPicture& command, double ns) { in print() argument
76 this->printNameAndTime(command, ns); in print()
78 if (auto bp = SkPicturePriv::AsSkBigPicture(command.picture)) { in print()
90 void print(const SkRecords::DrawAnnotation& command, double ns) { in print() argument
103 command.rect.left(), command.rect.top(), command.rect.right(), command.rect.bottom(), in print()
104 command.key.c_str()); in print()
109 void printNameAndTime(const T& command, double ns) { in printNameAndTime() argument
121 puts(NameOf(command)); in printNameAndTime()