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

Declarations

tools/lldb/include/lldb/Core/ValueObject.h
   45 class DumpValueObjectOptions;
tools/lldb/include/lldb/lldb-forward.h
   83 class DumpValueObjectOptions;

References

tools/lldb/include/lldb/Core/ValueObject.h
  638   void Dump(Stream &s, const DumpValueObjectOptions &options);
  662   void LogValueObject(Log *log, const DumpValueObjectOptions &options);
tools/lldb/include/lldb/DataFormatters/DumpValueObjectOptions.h
   54                              const DumpValueObjectOptions &, Stream &)>
   57   static const DumpValueObjectOptions DefaultOptions() {
   58     static DumpValueObjectOptions g_default_options;
   65   DumpValueObjectOptions(const DumpValueObjectOptions &rhs) = default;
   69   DumpValueObjectOptions &
   72   DumpValueObjectOptions &SetMaximumDepth(uint32_t depth = 0);
   74   DumpValueObjectOptions &SetDeclPrintingHelper(DeclPrintingHelper helper);
   76   DumpValueObjectOptions &SetShowTypes(bool show = false);
   78   DumpValueObjectOptions &SetShowLocation(bool show = false);
   80   DumpValueObjectOptions &SetUseObjectiveC(bool use = false);
   82   DumpValueObjectOptions &SetShowSummary(bool show = true);
   84   DumpValueObjectOptions &
   87   DumpValueObjectOptions &SetUseSyntheticValue(bool use_synthetic = true);
   89   DumpValueObjectOptions &SetScopeChecked(bool check = true);
   91   DumpValueObjectOptions &SetFlatOutput(bool flat = false);
   93   DumpValueObjectOptions &SetOmitSummaryDepth(uint32_t depth = 0);
   95   DumpValueObjectOptions &SetIgnoreCap(bool ignore = false);
   97   DumpValueObjectOptions &SetRawDisplay();
   99   DumpValueObjectOptions &SetFormat(lldb::Format format = lldb::eFormatDefault);
  101   DumpValueObjectOptions &
  104   DumpValueObjectOptions &SetRootValueObjectName(const char *name = nullptr);
  106   DumpValueObjectOptions &SetHideRootType(bool hide_root_type = false);
  108   DumpValueObjectOptions &SetHideName(bool hide_name = false);
  110   DumpValueObjectOptions &SetHideValue(bool hide_value = false);
  112   DumpValueObjectOptions &SetHidePointerValue(bool hide = false);
  114   DumpValueObjectOptions &SetVariableFormatDisplayLanguage(
  117   DumpValueObjectOptions &SetRunValidator(bool run = true);
  119   DumpValueObjectOptions &SetUseTypeDisplayName(bool dis = false);
  121   DumpValueObjectOptions &SetAllowOnelinerMode(bool oneliner = false);
  123   DumpValueObjectOptions &SetRevealEmptyAggregates(bool reveal = true);
  125   DumpValueObjectOptions &SetElementCount(uint32_t element_count = 0);
  127   DumpValueObjectOptions &
tools/lldb/include/lldb/DataFormatters/ValueObjectPrinter.h
   29                      const DumpValueObjectOptions &options);
   44                      const DumpValueObjectOptions &options,
   45                      const DumpValueObjectOptions::PointerDepth &ptr_depth,
   52             const DumpValueObjectOptions &options,
   53             const DumpValueObjectOptions::PointerDepth &ptr_depth,
  102                       DumpValueObjectOptions::PointerDepth &curr_ptr_depth);
  115                   const DumpValueObjectOptions::PointerDepth &curr_ptr_depth);
  121                 const DumpValueObjectOptions::PointerDepth &curr_ptr_depth);
  131   DumpValueObjectOptions m_options;
  134   DumpValueObjectOptions::PointerDepth m_ptr_depth;
tools/lldb/include/lldb/Interpreter/OptionGroupValueObjectDisplay.h
   40   DumpValueObjectOptions GetAsDumpOptions(
tools/lldb/include/lldb/Target/Language.h
  213   virtual DumpValueObjectOptions::DeclPrintingHelper GetDeclPrintingHelper();
tools/lldb/source/Commands/CommandObjectExpression.cpp
  453         DumpValueObjectOptions options(m_varobj_options.GetAsDumpOptions(
tools/lldb/source/Commands/CommandObjectFrame.cpp
  181     DumpValueObjectOptions::DeclPrintingHelper helper = [&valobj_sp](
  192     DumpValueObjectOptions options;
  512     DumpValueObjectOptions options(m_varobj_options.GetAsDumpOptions(
tools/lldb/source/Commands/CommandObjectMemory.cpp
  833           DumpValueObjectOptions options(m_varobj_options.GetAsDumpOptions(
tools/lldb/source/Commands/CommandObjectTarget.cpp
  747     DumpValueObjectOptions options(m_varobj_options.GetAsDumpOptions());
tools/lldb/source/Core/ValueObject.cpp
 2744                                  const DumpValueObjectOptions &options) {
 2755 void ValueObject::Dump(Stream &s, const DumpValueObjectOptions &options) {
tools/lldb/source/DataFormatters/DumpValueObjectOptions.cpp
   35 DumpValueObjectOptions &
   41 DumpValueObjectOptions &
   47 DumpValueObjectOptions &
   53 DumpValueObjectOptions &DumpValueObjectOptions::SetShowTypes(bool show) {
   58 DumpValueObjectOptions &DumpValueObjectOptions::SetShowLocation(bool show) {
   63 DumpValueObjectOptions &DumpValueObjectOptions::SetUseObjectiveC(bool use) {
   68 DumpValueObjectOptions &DumpValueObjectOptions::SetShowSummary(bool show) {
   76 DumpValueObjectOptions &
   82 DumpValueObjectOptions &
   88 DumpValueObjectOptions &DumpValueObjectOptions::SetScopeChecked(bool check) {
   93 DumpValueObjectOptions &DumpValueObjectOptions::SetFlatOutput(bool flat) {
   98 DumpValueObjectOptions &
  104 DumpValueObjectOptions &DumpValueObjectOptions::SetIgnoreCap(bool ignore) {
  109 DumpValueObjectOptions &DumpValueObjectOptions::SetRawDisplay() {
  120 DumpValueObjectOptions &DumpValueObjectOptions::SetFormat(lldb::Format format) {
  125 DumpValueObjectOptions &
  131 DumpValueObjectOptions &
  140 DumpValueObjectOptions &
  146 DumpValueObjectOptions &DumpValueObjectOptions::SetHideName(bool hide_name) {
  151 DumpValueObjectOptions &DumpValueObjectOptions::SetHideValue(bool hide_value) {
  156 DumpValueObjectOptions &DumpValueObjectOptions::SetHidePointerValue(bool hide) {
  161 DumpValueObjectOptions &
  168 DumpValueObjectOptions &DumpValueObjectOptions::SetRunValidator(bool run) {
  173 DumpValueObjectOptions &
  179 DumpValueObjectOptions &
  185 DumpValueObjectOptions &
  191 DumpValueObjectOptions &
  197 DumpValueObjectOptions &DumpValueObjectOptions::SetPointerAsArray(
tools/lldb/source/DataFormatters/ValueObjectPrinter.cpp
   23     DumpValueObjectOptions options(*valobj);
   26     DumpValueObjectOptions options;
   32                                        const DumpValueObjectOptions &options) {
   37     ValueObject *valobj, Stream *s, const DumpValueObjectOptions &options,
   38     const DumpValueObjectOptions::PointerDepth &ptr_depth, uint32_t curr_depth,
   44     ValueObject *valobj, Stream *s, const DumpValueObjectOptions &options,
   45     const DumpValueObjectOptions::PointerDepth &ptr_depth, uint32_t curr_depth,
  483     DumpValueObjectOptions::PointerDepth &curr_ptr_depth) {
  560     const DumpValueObjectOptions::PointerDepth &curr_ptr_depth) {
  565   DumpValueObjectOptions child_options(m_options);
  664     const DumpValueObjectOptions::PointerDepth &curr_ptr_depth) {
  759   DumpValueObjectOptions::PointerDepth curr_ptr_depth = m_ptr_depth;
tools/lldb/source/Interpreter/OptionGroupValueObjectDisplay.cpp
  187 DumpValueObjectOptions OptionGroupValueObjectDisplay::GetAsDumpOptions(
  190   DumpValueObjectOptions options;
  192       {DumpValueObjectOptions::PointerDepth::Mode::Always, ptr_depth});
tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/RenderScriptRuntime.cpp
 3283           DumpValueObjectOptions expr_options;
tools/lldb/source/Target/Language.cpp
  433 DumpValueObjectOptions::DeclPrintingHelper Language::GetDeclPrintingHelper() {
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/bits/std_function.h
  299       _M_invoke(const _Any_data& __functor, _ArgTypes&&... __args)
  628       using _Invoker_type = _Res (*)(const _Any_data&, _ArgTypes&&...);
usr/include/c++/7.4.0/type_traits
 1659     { typedef _Tp&&   type; };