Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp143 auto_apply_fixits = tmp_value ? eLazyBoolYes : eLazyBoolNo; in SetOptionValue()
189 auto_apply_fixits = eLazyBoolCalculate; in OptionParsingStarting()
216 bool auto_apply_fixits; in GetEvaluateExpressionOptions() local
217 if (this->auto_apply_fixits == eLazyBoolCalculate) in GetEvaluateExpressionOptions()
218 auto_apply_fixits = target.GetEnableAutoApplyFixIts(); in GetEvaluateExpressionOptions()
220 auto_apply_fixits = this->auto_apply_fixits == eLazyBoolYes; in GetEvaluateExpressionOptions()
222 options.SetAutoApplyFixIts(auto_apply_fixits); in GetEvaluateExpressionOptions()
H A DCommandObjectExpression.h58 LazyBool auto_apply_fixits; variable