Searched refs:fCommands (Results 1 – 4 of 4) sorted by relevance
/external/skia/tools/viewer/sk_app/ |
D | CommandSet.cpp | 39 for (Command& cmd : fCommands) { in onKey() 51 for (Command& cmd : fCommands) { in onChar() 62 for (const Command& cmd : fCommands) { in onSoftkey() 73 fCommands.push_back(Command(c, group, description, function)); in addCommand() 78 fCommands.push_back(Command(k, keyName, group, description, function)); in addCommand() 101 SkTQSort(fCommands.begin(), fCommands.end() - 1, in drawHelp() 123 for (Command& cmd : fCommands) { in drawHelp() 137 for (Command& cmd : fCommands) { in drawHelp() 155 for(const Command& command : fCommands) { in getCommandsAsSoftkeys()
|
D | CommandSet.h | 111 SkTArray<Command> fCommands; variable
|
/external/skia/tools/viewer/ |
D | Viewer.cpp | 302 fCommands.attach(fWindow); in Viewer() 313 fCommands.addCommand(' ', "GUI", "Toggle Debug GUI", [this]() { in Viewer() 317 fCommands.addCommand('g', "GUI", "Toggle GUI Demo", [this]() { in Viewer() 321 fCommands.addCommand('z', "GUI", "Toggle zoom window", [this]() { in Viewer() 325 fCommands.addCommand('s', "Overlays", "Toggle stats display", [this]() { in Viewer() 329 fCommands.addCommand('c', "Modes", "Cycle color mode", [this]() { in Viewer() 345 fCommands.addCommand(Window::Key::kRight, "Right", "Navigation", "Next slide", [this]() { in Viewer() 353 fCommands.addCommand(Window::Key::kLeft, "Left", "Navigation", "Previous slide", [this]() { in Viewer() 361 fCommands.addCommand(Window::Key::kUp, "Up", "Transform", "Zoom in", [this]() { in Viewer() 365 fCommands.addCommand(Window::Key::kDown, "Down", "Transform", "Zoom out", [this]() { in Viewer() [all …]
|
D | Viewer.h | 92 sk_app::CommandSet fCommands; variable
|