Searched refs:m_alias_options (Results 1 - 2 of 2) sorted by relevance

/external/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h472 OptionArgMap m_alias_options; // Stores any options (with or without arguments) that go with any alias. member in class:lldb_private::CommandInterpreter
/external/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2195 pos = m_alias_options.find (alias);
2196 if (pos != m_alias_options.end())
2206 OptionArgMap::iterator pos = m_alias_options.find(alias_name);
2207 if (pos != m_alias_options.end())
2209 m_alias_options.erase (pos);
2216 m_alias_options[alias_name] = option_arg_vector_sp;
2240 return (!m_alias_options.empty());

Completed in 822 milliseconds