Searched refs:AliasExists (Results 1 – 7 of 7) sorted by relevance
45 self.assertTrue(ci.AliasExists("file"))46 self.assertTrue(ci.AliasExists("run"))47 self.assertTrue(ci.AliasExists("bt"))57 self.assertFalse(ci.AliasExists(None))
109 AliasExists (const char *cmd);
123 bool SBCommandInterpreter::AliasExists(const char *cmd) { in AliasExists() function in SBCommandInterpreter124 LLDB_RECORD_METHOD(bool, SBCommandInterpreter, AliasExists, (const char *), in AliasExists()127 return (((cmd != nullptr) && IsValid()) ? m_opaque_ptr->AliasExists(cmd) in AliasExists()779 LLDB_REGISTER_METHOD(bool, SBCommandInterpreter, AliasExists, in RegisterMethods()
50 bool AliasExists(const char *cmd);
468 if (m_interpreter.AliasExists(alias_command) || in HandleAliasingRawCommand()569 if (m_interpreter.AliasExists(alias_command) || in HandleAliasingNormalCommand()669 if (m_interpreter.AliasExists(command_name)) in DoExecute()
276 bool AliasExists(llvm::StringRef cmd) const;
1155 bool CommandInterpreter::AliasExists(llvm::StringRef cmd) const { in AliasExists() function in CommandInterpreter