Searched refs:search_word (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectApropos.cpp | 45 auto search_word = args[0].ref(); in DoExecute() local 46 if (!search_word.empty()) { in DoExecute() 52 m_interpreter.FindCommandsForApropos(search_word, commands_found, in DoExecute() 75 GetDebugger().Apropos(search_word, properties); in DoExecute()
|
D | CommandObjectMultiword.cpp | 233 llvm::StringRef search_word, in AproposAllSubCommands() argument 245 if (sub_cmd_obj->HelpTextContainsWord(search_word)) { in AproposAllSubCommands() 252 search_word, commands_found, in AproposAllSubCommands() 340 llvm::StringRef search_word, in AproposAllSubCommands() argument 345 return proxy_command->AproposAllSubCommands(prefix, search_word, in AproposAllSubCommands()
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | CommandObjectMultiword.h | 47 llvm::StringRef search_word, 106 llvm::StringRef search_word,
|
D | CommandObject.h | 168 llvm::StringRef search_word, in AproposAllSubCommands() argument 245 bool HelpTextContainsWord(llvm::StringRef search_word,
|
/external/llvm-project/lldb/source/Interpreter/ |
D | CommandObject.cpp | 312 bool CommandObject::HelpTextContainsWord(llvm::StringRef search_word, in HelpTextContainsWord() argument 325 if (search_short_help && short_help.contains_lower(search_word)) in HelpTextContainsWord() 327 else if (search_long_help && long_help.contains_lower(search_word)) in HelpTextContainsWord() 329 else if (search_syntax && syntax_help.contains_lower(search_word)) in HelpTextContainsWord() 339 if (usage_text.contains_lower(search_word)) in HelpTextContainsWord()
|
D | CommandInterpreter.cpp | 2674 llvm::StringRef search_word, StringList &commands_found, in FindCommandsForApropos() argument 2686 if (command_name.contains_lower(search_word) || in FindCommandsForApropos() 2687 cmd_obj->HelpTextContainsWord(search_word, search_short_help, in FindCommandsForApropos() 2696 FindCommandsForApropos(search_word, commands_found, commands_help, in FindCommandsForApropos() 2702 void CommandInterpreter::FindCommandsForApropos(llvm::StringRef search_word, in FindCommandsForApropos() argument 2711 FindCommandsForApropos(search_word, commands_found, commands_help, in FindCommandsForApropos() 2715 FindCommandsForApropos(search_word, commands_found, commands_help, in FindCommandsForApropos() 2719 FindCommandsForApropos(search_word, commands_found, commands_help, in FindCommandsForApropos()
|