Lines Matching defs:exact_cmd
1279 CommandObject *exact_cmd = found_elem->second.get();
1280 if (exact_cmd) {
1282 matches->AppendString(exact_cmd->GetCommandName());
1284 descriptions->AppendString(exact_cmd->GetHelp());
1285 return exact_cmd;
1290 CommandObject *exact_cmd = find_exact(GetUserCommands());
1291 if (exact_cmd)
1292 return exact_cmd;
1294 exact_cmd = find_exact(GetUserMultiwordCommands());
1295 if (exact_cmd)
1296 return exact_cmd;
1315 CommandObject *exact_cmd = found_elem->second.get();
1316 if (!exact_cmd)
1320 matches->AppendString(exact_cmd->GetCommandName());
1323 descriptions->AppendString(exact_cmd->GetHelp());
1325 return exact_cmd;
1329 CommandObject *exact_cmd = find_exact(GetAliases());
1330 if (exact_cmd)
1331 return exact_cmd;