reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Commands/CommandObjectExpression.cpp
  387   options.SetCoerceToId(m_varobj_options.use_objc);
  388   options.SetUnwindOnError(m_command_options.unwind_on_error);
  389   options.SetIgnoreBreakpoints(m_command_options.ignore_breakpoints);
  390   options.SetKeepInMemory(keep_in_memory);
  391   options.SetUseDynamic(m_varobj_options.use_dynamic);
  392   options.SetTryAllThreads(m_command_options.try_all_threads);
  393   options.SetDebug(m_command_options.debug);
  394   options.SetLanguage(m_command_options.language);
  395   options.SetExecutionPolicy(
  406   options.SetAutoApplyFixIts(auto_apply_fixits);
  409     options.SetExecutionPolicy(eExecutionPolicyTopLevel);
  415     options.SetGenerateDebugInfo(true);
  418     options.SetTimeout(std::chrono::microseconds(m_command_options.timeout));
  420     options.SetTimeout(llvm::None);
  423       expr, frame, result_valobj_sp, options, &m_fixed_expression);