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.cpp1060 auto alias_pos = m_alias_dict.find(cmd); in GetCommandSP() local
1061 if (alias_pos != m_alias_dict.end()) in GetCommandSP()
1062 command_sp = alias_pos->second; in GetCommandSP()
1115 auto alias_pos = m_alias_dict.find(cmd); in GetCommandSP() local
1116 if (alias_pos != m_alias_dict.end()) in GetCommandSP()
1117 alias_match_sp = alias_pos->second; in GetCommandSP()
1536 for (auto alias_pos = m_alias_dict.begin(); alias_pos != m_alias_dict.end(); in GetHelp() local
1537 ++alias_pos) { in GetHelp()
1538 OutputFormattedHelpText(result.GetOutputStream(), alias_pos->first, "--", in GetHelp()
1539 alias_pos->second->GetHelp(), max_len); in GetHelp()