Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1008 auto alias_pos = m_alias_dict.find(cmd); in GetCommandSP() local
1009 if (alias_pos != m_alias_dict.end()) in GetCommandSP()
1010 command_sp = alias_pos->second; in GetCommandSP()
1063 auto alias_pos = m_alias_dict.find(cmd); in GetCommandSP() local
1064 if (alias_pos != m_alias_dict.end()) in GetCommandSP()
1065 alias_match_sp = alias_pos->second; in GetCommandSP()
1425 for (auto alias_pos = m_alias_dict.begin(); alias_pos != m_alias_dict.end(); in GetHelp() local
1426 ++alias_pos) { in GetHelp()
1427 OutputFormattedHelpText(result.GetOutputStream(), alias_pos->first, "--", in GetHelp()
1428 alias_pos->second->GetHelp(), max_len); in GetHelp()