Lines Matching defs:Command
35 ExecCommand("c", llvm::cl::desc("Command to execute and then exit."));
88 // REPL commands inherit from Command and contain their options as members.
89 // Creating a Command populates parser options, parseAndRun() resets them.
90 class Command {
102 virtual ~Command() = default;
136 class FuzzyFind : public Command {
175 class Lookup : public Command {
216 class Refs : public Command {
272 class Relations : public Command {
309 class Export : public Command {
363 std::function<std::unique_ptr<Command>()> Implementation;