Home
last modified time | relevance | path

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

/external/llvm-project/lldb/bindings/interface/
DSBCommandInterpreter.i118 HasCommands ();
/external/llvm-project/lldb/test/API/commands/session/save/
DTestSessionSave.py51 self.assertTrue(interpreter.HasCommands())
/external/llvm-project/lldb/test/API/python_api/interpreter/
DTestCommandInterpreterAPI.py39 self.assertTrue(ci.HasCommands())
/external/llvm-project/lldb/source/API/
DSBCommandInterpreter.cpp352 bool SBCommandInterpreter::HasCommands() { in HasCommands() function in SBCommandInterpreter
353 LLDB_RECORD_METHOD_NO_ARGS(bool, SBCommandInterpreter, HasCommands); in HasCommands()
355 return (IsValid() ? m_opaque_ptr->HasCommands() : false); in HasCommands()
810 LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, HasCommands, ()); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBCommandInterpreter.h56 bool HasCommands();
/external/llvm-project/lldb/source/Commands/
DCommandObjectCommands.cpp623 if (!m_interpreter.HasCommands() || request.GetCursorIndex() != 0) in HandleArgumentCompletion()
715 if (!m_interpreter.HasCommands() || request.GetCursorIndex() != 0) in HandleArgumentCompletion()
1661 if (!m_interpreter.HasCommands() || request.GetCursorIndex() != 0) in HandleArgumentCompletion()
/external/llvm-project/lldb/include/lldb/Interpreter/
DCommandInterpreter.h415 bool HasCommands() const;
/external/llvm-project/lldb/source/Interpreter/
DCommandInterpreter.cpp898 if (HasCommands()) { in GetCommandSP()
933 if (HasCommands()) { in GetCommandSP()
1927 bool CommandInterpreter::HasCommands() const { return (!m_command_dict.empty()); } in HasCommands() function in CommandInterpreter