Lines Matching refs:Command
1 //===--- CommentCommandTraits.cpp - Comment command properties --*- C++ -*-===//
48 // Single-character command impostures, such as \t or \n, should not go
59 auto ConsiderCorrection = [&](const CommandInfo *Command) {
60 StringRef Name = Command->Name;
70 BestCommand.push_back(Command);
74 for (const auto &Command : Commands)
75 ConsiderCorrection(&Command);
77 for (const auto *Command : RegisteredCommands)
78 if (!Command->IsUnknownCommand)
79 ConsiderCorrection(Command);
92 // We only have a limited number of bits to encode command IDs in the
95 && "Too many commands. We have limited bits for the command ID.");