Home
last modified time | relevance | path

Searched refs:m_is_dashdash_alias (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/lldb/source/Interpreter/
H A DCommandAlias.cpp84 m_is_dashdash_alias(eLazyBoolCalculate), m_did_set_help(false), in CommandAlias()
170 if (m_is_dashdash_alias != eLazyBoolCalculate) in IsDashDashCommand()
171 return (m_is_dashdash_alias == eLazyBoolYes); in IsDashDashCommand()
172 m_is_dashdash_alias = eLazyBoolNo; in IsDashDashCommand()
183 m_is_dashdash_alias = eLazyBoolYes; in IsDashDashCommand()
190 if ((m_is_dashdash_alias == eLazyBoolNo) && IsNestedAlias()) in IsDashDashCommand()
191 m_is_dashdash_alias = in IsDashDashCommand()
194 return (m_is_dashdash_alias == eLazyBoolYes); in IsDashDashCommand()
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandAlias.h78 LazyBool m_is_dashdash_alias; variable