Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Interpreter/
H A DCommandAlias.cpp85 m_is_dashdash_alias(eLazyBoolCalculate), m_did_set_help(false), in CommandAlias()
172 if (m_is_dashdash_alias != eLazyBoolCalculate) in IsDashDashCommand()
173 return (m_is_dashdash_alias == eLazyBoolYes); in IsDashDashCommand()
174 m_is_dashdash_alias = eLazyBoolNo; in IsDashDashCommand()
185 m_is_dashdash_alias = eLazyBoolYes; in IsDashDashCommand()
192 if ((m_is_dashdash_alias == eLazyBoolNo) && IsNestedAlias()) in IsDashDashCommand()
193 m_is_dashdash_alias = in IsDashDashCommand()
196 return (m_is_dashdash_alias == eLazyBoolYes); in IsDashDashCommand()
/openbsd-src/gnu/llvm/lldb/include/lldb/Interpreter/
H A DCommandAlias.h78 LazyBool m_is_dashdash_alias; variable