Lines Matching +full:display +full:- +full:depth
1 //===-- OptionGroupValueObjectDisplay.cpp ---------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
23 {LLDB_OPT_SET_1, false, "dynamic-type", 'd',
27 {LLDB_OPT_SET_1, false, "synthetic-type", 'S',
30 {LLDB_OPT_SET_1, false, "depth", 'D', OptionParser::eRequiredArgument,
31 nullptr, {}, 0, eArgTypeCount, "Set the max recurse depth when dumping "
34 {}, 0, eArgTypeNone, "Display results in a flat format that uses "
38 {LLDB_OPT_SET_1, false, "object-description", 'O',
40 "Display using a language-specific description API, if possible."},
41 {LLDB_OPT_SET_1, false, "ptr-depth", 'P', OptionParser::eRequiredArgument,
44 {LLDB_OPT_SET_1, false, "show-types", 'T', OptionParser::eNoArgument,
47 {LLDB_OPT_SET_1, false, "no-summary-depth", 'Y',
49 "Set the depth at which omitting summary information stops (default is "
51 {LLDB_OPT_SET_1, false, "raw-output", 'R', OptionParser::eNoArgument,
53 {LLDB_OPT_SET_1, false, "show-all-children", 'A', OptionParser::eNoArgument,
58 {LLDB_OPT_SET_1, false, "element-count", 'Z',
105 error.SetErrorStringWithFormat("invalid max depth '%s'", in SetOptionValue()
123 error.SetErrorStringWithFormat("invalid pointer depth '%s'", in SetOptionValue()
133 error.SetErrorStringWithFormat("invalid pointer depth '%s'", in SetOptionValue()
141 error.SetErrorStringWithFormat("invalid synthetic-type '%s'", in SetOptionValue()
177 execution_context ? execution_context->GetTargetSP() : TargetSP(); in OptionParsingStarting()
179 use_dynamic = target_sp->GetPreferDynamicValue(); in OptionParsingStarting()
180 auto max_depth_config = target_sp->GetMaximumDepthOfChildrenToDisplay(); in OptionParsingStarting()