Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDiagnosticManager.h97 m_fixed_expression.clear(); in Clear()
126 m_fixed_expression = std::move(other.m_fixed_expression); in Consume()
148 const std::string &GetFixedExpression() { return m_fixed_expression; } in GetFixedExpression()
152 m_fixed_expression = std::move(fixed_expression); in SetFixedExpression()
157 std::string m_fixed_expression; variable
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp440 expr, frame, result_valobj_sp, eval_options, &m_fixed_expression); in EvaluateExpression()
444 if (!m_fixed_expression.empty() && target.GetEnableNotifyAboutFixIts()) { in EvaluateExpression()
446 error_stream << " " << m_fixed_expression << "\n"; in EvaluateExpression()
599 m_fixed_expression.clear(); in DoExecute()
680 if (!m_fixed_expression.empty() && target.GetEnableNotifyAboutFixIts()) { in DoExecute()
689 fixed_command.append(m_fixed_expression); in DoExecute()
691 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