Home
last modified time | relevance | path

Searched refs:new_matches (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMultiword.cpp253 StringList new_matches, descriptions; in HandleCompletion()
254 AddNamesMatchingPartialString(m_subcommand_dict, arg0, new_matches, in HandleCompletion() local
256 request.AddCompletions(new_matches, descriptions); in HandleCompletion()
258 if (new_matches.GetSize() == 1 && in HandleCompletion()
259 new_matches.GetStringAtIndex(0) != nullptr && in HandleCompletion()
260 (arg0 == new_matches.GetStringAtIndex(0))) { in HandleCompletion()
274 StringList new_matches; in HandleCompletion()
275 CommandObject *sub_command_object = GetSubcommandObject(arg0, &new_matches); in HandleCompletion() local
282 new_matches.DeleteStringAtIndex(0); in HandleCompletion()
283 request.AddCompletions(new_matches); in HandleCompletion()
[all...]
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp2421 StringList new_matches; in AutoComplete() local
2422 AddMatches(&g_root, str, llvm::StringRef(), new_matches); in AutoComplete()
2423 request.AddCompletions(new_matches); in AutoComplete()
2446 StringList new_matches; in AutoComplete() local
2447 AddMatches(entry_def, str, llvm::StringRef(), new_matches); in AutoComplete()
2448 request.AddCompletions(new_matches); in AutoComplete()
2452 StringList new_matches; in AutoComplete() local
2453 AddMatches(entry_def, str, remainder, new_matches); in AutoComplete()
2454 request.AddCompletions(new_matches); in AutoComplete()
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandInterpreter.cpp2071 StringList new_matches, descriptions; in HandleCompletionMatches() local
2072 GetCommandNamesMatchingPartialString("", include_aliases, new_matches, in HandleCompletionMatches()
2074 request.AddCompletions(new_matches, descriptions); in HandleCompletionMatches()
2078 StringList new_matches, new_descriptions; in HandleCompletionMatches() local
2081 &new_matches, &new_descriptions); in HandleCompletionMatches()
2083 if (new_matches.GetSize() && cmd_obj && cmd_obj->IsMultiwordObject() && in HandleCompletionMatches()
2084 new_matches.GetStringAtIndex(0) != nullptr && in HandleCompletionMatches()
2086 new_matches.GetStringAtIndex(0)) == 0) { in HandleCompletionMatches()
2089 new_matches.DeleteStringAtIndex(0); in HandleCompletionMatches()
2094 request.AddCompletions(new_matches, new_descriptions); in HandleCompletionMatches()