35 llvm::StringRef path,
bool will_modify,
37 OptionValuePropertiesSP properties_sp(GetValueProperties());
39 return properties_sp->GetSubValue(exe_ctx, path, will_modify,
error);
40 return lldb::OptionValueSP();
46 llvm::StringRef value) {
47 OptionValuePropertiesSP properties_sp(GetValueProperties());
49 return properties_sp->SetSubValue(exe_ctx, op, path, value);
51 error.SetErrorString(
"no properties");
57 OptionValuePropertiesSP properties_sp(GetValueProperties());
59 return properties_sp->DumpValue(exe_ctx, strm, dump_mask);
66 OptionValuePropertiesSP properties_sp(GetValueProperties());
68 return properties_sp->DumpAllDescriptions(interpreter, strm);
73 llvm::StringRef property_path,
75 OptionValuePropertiesSP properties_sp(GetValueProperties());
77 return properties_sp->DumpPropertyValue(exe_ctx, strm, property_path,
81 error.SetErrorString(
"empty property list");
86 Properties::Apropos(llvm::StringRef keyword,
87 std::vector<const Property *> &matching_properties)
const {
88 OptionValuePropertiesSP properties_sp(GetValueProperties());
90 properties_sp->Apropos(keyword, matching_properties);
92 return matching_properties.size();
95 lldb::OptionValuePropertiesSP
98 OptionValuePropertiesSP properties_sp(GetValueProperties());
100 return properties_sp->GetSubProperty(exe_ctx, name);
101 return lldb::OptionValuePropertiesSP();
104 const char *Properties::GetExperimentalSettingsName() {
return "experimental"; }
106 bool Properties::IsSettingExperimental(llvm::StringRef setting) {
110 llvm::StringRef experimental = GetExperimentalSettingsName();
111 size_t dot_pos = setting.find_first_of(
'.');
112 return setting.take_front(dot_pos) == experimental;