Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectMultiword.cpp185 int CommandObjectMultiword::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObjectMultiword
209 return cmd_obj->HandleCompletion(request); in HandleCompletion()
226 return sub_command_object->HandleCompletion(request); in HandleCompletion()
366 int CommandObjectProxy::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObjectProxy
369 return proxy_command->HandleCompletion(request); in HandleCompletion()
H A DCommandObjectHelp.cpp211 int CommandObjectHelp::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObjectHelp
226 return cmd_obj->HandleCompletion(request); in HandleCompletion()
H A DCommandObjectHelp.h29 int HandleCompletion(CompletionRequest &request) override;
H A DCommandObjectExpression.h58 int HandleCompletion(CompletionRequest &request) override;
H A DCommandObjectExpression.cpp309 int CommandObjectExpression::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObjectExpression
H A DCommandObjectPlatform.cpp177 int HandleCompletion(CompletionRequest &request) override { in HandleCompletion() function in CommandObjectPlatformSelect
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h56 int HandleCompletion(CompletionRequest &request) override;
118 int HandleCompletion(CompletionRequest &request) override;
H A DCommandObjectRegexCommand.h40 int HandleCompletion(CompletionRequest &request) override;
H A DCommandAlias.h40 int HandleCompletion(CompletionRequest &request) override;
H A DCommandObject.h240 virtual int HandleCompletion(CompletionRequest &request);
H A DCommandInterpreter.h322 int HandleCompletion(const char *current_line, const char *cursor,
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBCommandInterpreter.h157 int HandleCompletion(const char *current_line, const char *cursor,
161 int HandleCompletion(const char *current_line, uint32_t cursor_pos,
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DCommandAlias.cpp117 int CommandAlias::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandAlias
119 return m_underlying_command_sp->HandleCompletion(request); in HandleCompletion()
H A DCommandObjectRegexCommand.cpp92 int CommandObjectRegexCommand::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObjectRegexCommand
H A DCommandObject.cpp263 int CommandObject::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObject
H A DCommandInterpreter.cpp1824 num_command_matches = command_object->HandleCompletion(request); in HandleCompletionMatches()
1831 int CommandInterpreter::HandleCompletion( in HandleCompletion() function in CommandInterpreter
/freebsd-12.1/contrib/llvm/tools/lldb/source/API/
H A DSBCommandInterpreter.cpp273 int SBCommandInterpreter::HandleCompletion( in HandleCompletion() function in SBCommandInterpreter
314 num_completions = m_opaque_ptr->HandleCompletion( in HandleCompletionWithDescriptions()
342 int SBCommandInterpreter::HandleCompletion(const char *current_line, in HandleCompletion() function in SBCommandInterpreter
349 return HandleCompletion(current_line, cursor, last_char, match_start_point, in HandleCompletion()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Expression/
H A DREPL.cpp464 return debugger.GetCommandInterpreter().HandleCompletion( in IOHandlerComplete()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DIOHandler.cpp229 return io_handler.GetDebugger().GetCommandInterpreter().HandleCompletion( in IOHandlerComplete()