Searched refs:search_word (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectApropos.cpp46 auto search_word = args[0].ref(); local
47 if (!search_word.empty()) {
53 m_interpreter.FindCommandsForApropos(search_word, commands_found,
76 GetDebugger().Apropos(search_word, properties);
H A DCommandObjectMultiword.cpp234 llvm::StringRef search_word,
246 if (sub_cmd_obj->HelpTextContainsWord(search_word)) {
253 search_word, commands_found,
318 llvm::StringRef search_word,
323 return proxy_command->AproposAllSubCommands(prefix, search_word,
233 AproposAllSubCommands(llvm::StringRef prefix, llvm::StringRef search_word, StringList &commands_found, StringList &commands_help) argument
317 AproposAllSubCommands(llvm::StringRef prefix, llvm::StringRef search_word, StringList &commands_found, StringList &commands_help) argument
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandObjectMultiword.h47 llvm::StringRef search_word,
102 llvm::StringRef search_word,
H A DCommandObject.h167 llvm::StringRef search_word,
244 bool HelpTextContainsWord(llvm::StringRef search_word,
166 AproposAllSubCommands(llvm::StringRef prefix, llvm::StringRef search_word, StringList &commands_found, StringList &commands_help) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandObject.cpp289 bool CommandObject::HelpTextContainsWord(llvm::StringRef search_word, argument
302 if (search_short_help && short_help.contains_lower(search_word))
304 else if (search_long_help && long_help.contains_lower(search_word))
306 else if (search_syntax && syntax_help.contains_lower(search_word))
316 if (usage_text.contains_lower(search_word))
H A DCommandInterpreter.cpp2594 llvm::StringRef search_word, StringList &commands_found,
2606 if (command_name.contains_lower(search_word) ||
2607 cmd_obj->HelpTextContainsWord(search_word, search_short_help,
2616 FindCommandsForApropos(search_word, commands_found, commands_help,
2622 void CommandInterpreter::FindCommandsForApropos(llvm::StringRef search_word, argument
2631 FindCommandsForApropos(search_word, commands_found, commands_help,
2635 FindCommandsForApropos(search_word, commands_found, commands_help,
2639 FindCommandsForApropos(search_word, commands_found, commands_help,
2593 FindCommandsForApropos( llvm::StringRef search_word, StringList &commands_found, StringList &commands_help, CommandObject::CommandMap &command_map) argument

Completed in 77 milliseconds