Home
last modified time | relevance | path

Searched refs:alias_pos (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp987 auto alias_pos = m_alias_dict.find(cmd); in GetCommandSP() local
988 if (alias_pos != m_alias_dict.end()) in GetCommandSP()
989 command_sp = alias_pos->second; in GetCommandSP()
1042 auto alias_pos = m_alias_dict.find(cmd); in GetCommandSP() local
1043 if (alias_pos != m_alias_dict.end()) in GetCommandSP()
1044 alias_match_sp = alias_pos->second; in GetCommandSP()
1424 for (auto alias_pos = m_alias_dict.begin(); alias_pos != m_alias_dict.end(); in GetHelp() local
1425 ++alias_pos) { in GetHelp()
1426 OutputFormattedHelpText(result.GetOutputStream(), alias_pos->first, "--", in GetHelp()
1427 alias_pos->second->GetHelp(), max_len); in GetHelp()