Lines Matching defs:cmd_word
73 std::string_view cmd_word = cmd->GetCommandWord();
76 if (new_cmd_word == cmd_word) {
83 if (new_cmd_alias == cmd_word) {
220 std::string_view cmd_word = cmd->GetCommandWord();
223 fprintf(ostream_, "%s / %s\n", cmd_word.data(), cmd_alias.data());
225 fprintf(ostream_, "%s\n", cmd_word.data());
230 fprintf(ostream_, "\t%s %s\n", cmd_word.data(), args_str.data());
270 std::string cmd_word = tokenized_cmd.front();
272 if (cmd_word == cmd->GetCommandWord() ||
273 cmd_word == cmd->GetCommandAlias()) {
282 fprintf(ostream_, "Error: command '%s' not found\n", cmd_word.c_str());
312 std::string_view cmd_word,
322 command_word_(cmd_word, allocator_.Adapter()),