Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDiagnosticManager.h91 m_fixed_expression.clear(); in Clear()
120 m_fixed_expression = std::move(other.m_fixed_expression); in Consume()
142 const std::string &GetFixedExpression() { return m_fixed_expression; } in GetFixedExpression()
146 m_fixed_expression = std::move(fixed_expression); in SetFixedExpression()
151 std::string m_fixed_expression; variable
/src/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp428 expr, frame, result_valobj_sp, eval_options, &m_fixed_expression); in EvaluateExpression()
432 if (!m_fixed_expression.empty() && target.GetEnableNotifyAboutFixIts()) { in EvaluateExpression()
434 error_stream << " " << m_fixed_expression << "\n"; in EvaluateExpression()
591 m_fixed_expression.clear(); in DoExecute()
672 if (!m_fixed_expression.empty() && target.GetEnableNotifyAboutFixIts()) { in DoExecute()
681 fixed_command.append(m_fixed_expression); in DoExecute()
683 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