Home
last modified time | relevance | path

Searched refs:AliasExists (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/python_api/interpreter/
H A DTestCommandInterpreterAPI.py42 self.assertTrue(ci.AliasExists("file"))
43 self.assertTrue(ci.AliasExists("run"))
44 self.assertTrue(ci.AliasExists("bt"))
54 self.assertFalse(ci.AliasExists(None))
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBCommandInterpreter.i111 AliasExists (const char *cmd);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBCommandInterpreter.h50 bool AliasExists(const char *cmd);
/llvm-project-15.0.7/lldb/source/API/
H A DSBCommandInterpreter.cpp120 bool SBCommandInterpreter::AliasExists(const char *cmd) { in AliasExists() function in SBCommandInterpreter
123 return (((cmd != nullptr) && IsValid()) ? m_opaque_ptr->AliasExists(cmd) in AliasExists()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectCommands.cpp490 if (m_interpreter.AliasExists(alias_command) || in HandleAliasingRawCommand()
592 if (m_interpreter.AliasExists(alias_command) || in HandleAliasingNormalCommand()
688 if (m_interpreter.AliasExists(command_name)) in DoExecute()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandInterpreter.h279 bool AliasExists(llvm::StringRef cmd) const;
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandInterpreter.cpp1316 bool CommandInterpreter::AliasExists(llvm::StringRef cmd) const { in AliasExists() function in CommandInterpreter