Lines Matching refs:expr_options
321 EvaluateExpressionOptions expr_options = m_expr_options; in IOHandlerInputComplete() local
322 expr_options.SetCoerceToId(m_varobj_options.use_objc); in IOHandlerInputComplete()
323 expr_options.SetKeepInMemory(true); in IOHandlerInputComplete()
324 expr_options.SetUseDynamic(m_varobj_options.use_dynamic); in IOHandlerInputComplete()
325 expr_options.SetGenerateDebugInfo(true); in IOHandlerInputComplete()
326 expr_options.SetREPLEnabled(true); in IOHandlerInputComplete()
327 expr_options.SetColorizeErrors(colorize_err); in IOHandlerInputComplete()
328 expr_options.SetPoundLine(m_repl_source_path.c_str(), in IOHandlerInputComplete()
331 expr_options.SetLanguage(GetLanguage()); in IOHandlerInputComplete()
344 UserExpression::Evaluate(exe_ctx, expr_options, code.c_str(), in IOHandlerInputComplete()
348 if (llvm::Error err = OnExpressionEvaluated(exe_ctx, code, expr_options, in IOHandlerInputComplete()