Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1031 auto alias_pos = m_alias_dict.find(cmd); in GetCommandSP() local
1032 if (alias_pos != m_alias_dict.end()) in GetCommandSP()
1033 command_sp = alias_pos->second; in GetCommandSP()
1086 auto alias_pos = m_alias_dict.find(cmd); in GetCommandSP() local
1087 if (alias_pos != m_alias_dict.end()) in GetCommandSP()
1088 alias_match_sp = alias_pos->second; in GetCommandSP()
1448 for (auto alias_pos = m_alias_dict.begin(); alias_pos != m_alias_dict.end(); in GetHelp() local
1449 ++alias_pos) { in GetHelp()
1450 OutputFormattedHelpText(result.GetOutputStream(), alias_pos->first, "--", in GetHelp()
1451 alias_pos->second->GetHelp(), max_len); in GetHelp()