Home
last modified time | relevance | path

Searched refs:m_fixed_expression (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDiagnosticManager.h107 m_fixed_expression.clear(); in Clear()
134 m_fixed_expression = std::move(other.m_fixed_expression); in Consume()
160 const std::string &GetFixedExpression() { return m_fixed_expression; } in GetFixedExpression()
164 m_fixed_expression = std::move(fixed_expression); in SetFixedExpression()
169 std::string m_fixed_expression; variable
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp429 expr, frame, result_valobj_sp, eval_options, &m_fixed_expression); in EvaluateExpression()
433 if (!m_fixed_expression.empty() && target.GetEnableNotifyAboutFixIts()) { in EvaluateExpression()
435 error_stream << " " << m_fixed_expression << "\n"; in EvaluateExpression()
582 m_fixed_expression.clear(); in DoExecute()
671 if (!m_fixed_expression.empty() && target.GetEnableNotifyAboutFixIts()) { in DoExecute()
680 fixed_command.append(m_fixed_expression); in DoExecute()
682 fixed_command.append(m_fixed_expression); in DoExecute()
H A DCommandObjectExpression.h102 std::string m_fixed_expression; // Holds the current expression's fixed text. variable