Home
last modified time | relevance | path

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

/external/llvm-project/lldb/bindings/interface/
DSBCommandInterpreter.i121 HasAliases ();
/external/llvm-project/lldb/test/API/python_api/interpreter/
DTestCommandInterpreterAPI.py40 self.assertTrue(ci.HasAliases())
/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp358 bool SBCommandInterpreter::HasAliases() { in HasAliases() function in SBCommandInterpreter
359 LLDB_RECORD_METHOD_NO_ARGS(bool, SBCommandInterpreter, HasAliases); in HasAliases()
361 return (IsValid() ? m_opaque_ptr->HasAliases() : false); in HasAliases()
811 LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, HasAliases, ()); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBCommandInterpreter.h58 bool HasAliases();
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h417 bool HasAliases() const;
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp904 if (include_aliases && HasAliases()) { in GetCommandSP()
945 if (include_aliases && HasAliases()) { in GetCommandSP()
1929 bool CommandInterpreter::HasAliases() const { return (!m_alias_dict.empty()); } in HasAliases() function in CommandInterpreter
1933 bool CommandInterpreter::HasAliasOptions() const { return HasAliases(); } in HasAliasOptions()