/external/libbrillo/brillo/dbus/ |
D | async_event_sequencer_test.cc | 26 MOCK_METHOD(void, HandleCompletion, (bool)); 30 cb_ = base::Bind(&AsyncEventSequencerTest::HandleCompletion, in SetUp() 41 EXPECT_CALL(*this, HandleCompletion(true)).Times(1); in TEST_F() 50 EXPECT_CALL(*this, HandleCompletion(true)).Times(1); in TEST_F() 59 EXPECT_CALL(*this, HandleCompletion(false)).Times(1); in TEST_F() 70 EXPECT_CALL(*this, HandleCompletion(true)).Times(1); in TEST_F() 81 EXPECT_CALL(*this, HandleCompletion(false)).Times(1); in TEST_F() 91 EXPECT_CALL(*this, HandleCompletion(true)).Times(1); in TEST_F()
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectMultiword.cpp | 182 void CommandObjectMultiword::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObjectMultiword 199 cmd_obj->HandleCompletion(request); in HandleCompletion() 217 sub_command_object->HandleCompletion(request); in HandleCompletion() 371 void CommandObjectProxy::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObjectProxy 374 proxy_command->HandleCompletion(request); in HandleCompletion()
|
D | CommandObjectRegexCommand.h | 37 void HandleCompletion(CompletionRequest &request) override;
|
D | CommandObjectHelp.cpp | 204 void CommandObjectHelp::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObjectHelp 219 cmd_obj->HandleCompletion(request); in HandleCompletion()
|
D | CommandObjectHelp.h | 26 void HandleCompletion(CompletionRequest &request) override;
|
D | CommandObjectExpression.h | 58 void HandleCompletion(CompletionRequest &request) override;
|
D | CommandObjectRegexCommand.cpp | 85 void CommandObjectRegexCommand::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObjectRegexCommand
|
D | CommandObjectExpression.cpp | 287 void CommandObjectExpression::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObjectExpression
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | CommandObjectMultiword.h | 53 void HandleCompletion(CompletionRequest &request) override; 119 void HandleCompletion(CompletionRequest &request) override;
|
D | CommandAlias.h | 39 void HandleCompletion(CompletionRequest &request) override;
|
D | CommandObject.h | 232 virtual void HandleCompletion(CompletionRequest &request);
|
D | CommandInterpreter.h | 359 void HandleCompletion(CompletionRequest &request);
|
/external/llvm-project/lldb/source/API/ |
D | SBCommandInterpreter.cpp | 233 int SBCommandInterpreter::HandleCompletion( in HandleCompletion() function in SBCommandInterpreter 236 LLDB_RECORD_METHOD(int, SBCommandInterpreter, HandleCompletion, in HandleCompletion() 278 m_opaque_ptr->HandleCompletion(request); in HandleCompletionWithDescriptions() 336 int SBCommandInterpreter::HandleCompletion(const char *current_line, in HandleCompletion() function in SBCommandInterpreter 341 LLDB_RECORD_METHOD(int, SBCommandInterpreter, HandleCompletion, in HandleCompletion() 348 return HandleCompletion(current_line, cursor, last_char, match_start_point, in HandleCompletion() 796 LLDB_REGISTER_METHOD(int, SBCommandInterpreter, HandleCompletion, in RegisterMethods() 808 int, SBCommandInterpreter, HandleCompletion, in RegisterMethods()
|
/external/llvm-project/lldb/test/API/commands/expression/completion/ |
D | TestExprCompletion.py | 230 num_matches = interp.HandleCompletion(str_input, cursor_pos, 0, -1, match_strings) 241 num_matches = interp.HandleCompletion(str_input, len(str_input), 0, -1, match_strings)
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBCommandInterpreter.h | 186 int HandleCompletion(const char *current_line, const char *cursor, 190 int HandleCompletion(const char *current_line, uint32_t cursor_pos,
|
/external/llvm-project/lldb/test/API/commands/expression/completion-crash-invalid-iterator/ |
D | TestInvalidIteratorCompletionCrash.py | 21 …self.dbg.GetCommandInterpreter().HandleCompletion(to_complete, len(to_complete), 0, -1, lldb.SBStr…
|
/external/llvm-project/lldb/source/Interpreter/ |
D | CommandAlias.cpp | 119 void CommandAlias::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandAlias 121 m_underlying_command_sp->HandleCompletion(request); in HandleCompletion()
|
D | CommandObject.cpp | 279 void CommandObject::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandObject
|
D | CommandInterpreter.cpp | 1853 command_object->HandleCompletion(request); in HandleCompletionMatches() 1858 void CommandInterpreter::HandleCompletion(CompletionRequest &request) { in HandleCompletion() function in CommandInterpreter
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBCommandInterpreter.i | 151 HandleCompletion (const char *current_line,
|
/external/llvm-project/lldb/utils/lui/ |
D | commandwin.py | 74 commandinterpreter.HandleCompletion(
|
/external/llvm-project/lldb/source/Core/ |
D | IOHandler.cpp | 213 io_handler.GetDebugger().GetCommandInterpreter().HandleCompletion(request); in IOHandlerComplete()
|
/external/llvm-project/lldb/source/Expression/ |
D | REPL.cpp | 497 debugger.GetCommandInterpreter().HandleCompletion(sub_request); in IOHandlerComplete()
|
/external/llvm-project/lldb/test/API/functionalities/completion/ |
D | TestCompletion.py | 124 num_matches = interp.HandleCompletion(input, len(input), 0, -1, match_strings)
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/ |
D | lldbtest.py | 2289 num_matches = interp.HandleCompletion(str_input, len(str_input), 0, -1, match_strings) 2316 interp.HandleCompletion(command, len(command), 0, -1, match_strings) 2326 interp.HandleCompletion(command, len(command), 0, -1, match_strings)
|