llvm/lldb/source/DataFormatters/DumpValueObjectOptions.cpp

//===-- DumpValueObjectOptions.cpp ----------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "lldb/DataFormatters/DumpValueObjectOptions.h"

#include "lldb/Core/ValueObject.h"

usingnamespacelldb;
usingnamespacelldb_private;

DumpValueObjectOptions::DumpValueObjectOptions()
    :{}

DumpValueObjectOptions::DumpValueObjectOptions(ValueObject &valobj)
    :{}

DumpValueObjectOptions &
DumpValueObjectOptions::SetMaximumPointerDepth(PointerDepth depth) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetMaximumDepth(uint32_t depth, bool is_default) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetDeclPrintingHelper(DeclPrintingHelper helper) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetChildPrintingDecider(ChildPrintingDecider decider) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetShowTypes(bool show) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetShowLocation(bool show) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetUseObjectiveC(bool use) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetShowSummary(bool show) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetUseDynamicType(lldb::DynamicValueType dyn) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetUseSyntheticValue(bool use_synthetic) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetScopeChecked(bool check) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetFlatOutput(bool flat) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetOmitSummaryDepth(uint32_t depth) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetIgnoreCap(bool ignore) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetRawDisplay() {}

DumpValueObjectOptions &DumpValueObjectOptions::SetFormat(lldb::Format format) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetSummary(lldb::TypeSummaryImplSP summary) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetRootValueObjectName(const char *name) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetHideRootType(bool hide_root_type) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetHideRootName(bool hide_root_name) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetHideName(bool hide_name) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetHideValue(bool hide_value) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetHidePointerValue(bool hide) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetVariableFormatDisplayLanguage(
    lldb::LanguageType lang) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetRunValidator(bool run) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetUseTypeDisplayName(bool dis) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetAllowOnelinerMode(bool oneliner) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetRevealEmptyAggregates(bool reveal) {}

DumpValueObjectOptions &
DumpValueObjectOptions::SetElementCount(uint32_t element_count) {}

DumpValueObjectOptions &DumpValueObjectOptions::SetPointerAsArray(
    const PointerAsArraySettings &ptr_array) {}