Lines Matching refs:expr_options
278 EvaluateExpressionOptions expr_options; in IOHandlerInputComplete() local
279 expr_options.SetCoerceToId(m_varobj_options.use_objc); in IOHandlerInputComplete()
280 expr_options.SetUnwindOnError(m_command_options.unwind_on_error); in IOHandlerInputComplete()
281 expr_options.SetIgnoreBreakpoints(m_command_options.ignore_breakpoints); in IOHandlerInputComplete()
282 expr_options.SetKeepInMemory(true); in IOHandlerInputComplete()
283 expr_options.SetUseDynamic(m_varobj_options.use_dynamic); in IOHandlerInputComplete()
284 expr_options.SetTryAllThreads(m_command_options.try_all_threads); in IOHandlerInputComplete()
285 expr_options.SetGenerateDebugInfo(true); in IOHandlerInputComplete()
286 expr_options.SetREPLEnabled(true); in IOHandlerInputComplete()
287 expr_options.SetColorizeErrors(colorize_err); in IOHandlerInputComplete()
288 expr_options.SetPoundLine(m_repl_source_path.c_str(), in IOHandlerInputComplete()
291 expr_options.SetTimeout(std::chrono::microseconds(m_command_options.timeout)); in IOHandlerInputComplete()
293 expr_options.SetTimeout(llvm::None); in IOHandlerInputComplete()
295 expr_options.SetLanguage(GetLanguage()); in IOHandlerInputComplete()
307 UserExpression::Evaluate(exe_ctx, expr_options, code.c_str(), in IOHandlerInputComplete()