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