Searched refs:OptionValueBoolean (Results 1 – 21 of 21) sorted by relevance
16 class OptionValueBoolean : public Cloneable<OptionValueBoolean, OptionValue> {18 OptionValueBoolean(bool value) in OptionValueBoolean() function20 OptionValueBoolean(bool current_value, bool default_value) in OptionValueBoolean() function23 ~OptionValueBoolean() override = default;
39 OptionValueBoolean &GetOptionValue() { return m_value; } in GetOptionValue()41 const OptionValueBoolean &GetOptionValue() const { return m_value; } in GetOptionValue()44 OptionValueBoolean m_value;
35 OptionValueBoolean GetShowTags() { return m_show_tags; }; in GetShowTags()38 OptionValueBoolean m_show_tags;
34 const OptionValueBoolean &GetAppend() { return m_append; } in GetAppend()42 OptionValueBoolean m_append;
201 OptionValueBoolean *GetAsBoolean();205 const OptionValueBoolean *GetAsBoolean() const;
20 void OptionValueBoolean::DumpValue(const ExecutionContext *exe_ctx, in DumpValue()33 Status OptionValueBoolean::SetValueFromString(llvm::StringRef value_str, in SetValueFromString()70 void OptionValueBoolean::AutoComplete(CommandInterpreter &interpreter, in AutoComplete()
25 return static_cast<OptionValueBoolean *>(this)->GetCurrentValue(); in GetUInt64Value()46 OptionValueBoolean *OptionValue::GetAsBoolean() { in GetAsBoolean()48 return static_cast<OptionValueBoolean *>(this); in GetAsBoolean()52 const OptionValueBoolean *OptionValue::GetAsBoolean() const { in GetAsBoolean()54 return static_cast<const OptionValueBoolean *>(this); in GetAsBoolean()275 const OptionValueBoolean *option_value = GetAsBoolean(); in GetBooleanValue()282 OptionValueBoolean *option_value = GetAsBoolean(); in SetBooleanValue()514 value_sp = std::make_shared<OptionValueBoolean>(false); in CreateValueFromCStringForTypeMask()
56 std::make_shared<OptionValueBoolean>(OptionArgParser::ToBoolean( in Property()59 m_value_sp = std::make_shared<OptionValueBoolean>( in Property()
33 OptionValueBoolean.cpp
32 OptionValueBoolean.cpp \
287 OptionValueBoolean dump_all_sets;288 OptionValueBoolean alternate_name;
128 OptionValueBoolean m_clear;
127 OptionValueBoolean m_stop_on_error;128 OptionValueBoolean m_silent_run;129 OptionValueBoolean m_stop_on_continue;130 OptionValueBoolean m_cmd_relative_to_command_file;
1692 OptionValueBoolean m_all;
1614 OptionValueBoolean m_use_dummy;
1708 OptionValueBoolean m_define_enabled;
1977 OptionValueBoolean m_prefer_mangled = {false, false};
56 "OptionValueBoolean.cpp",
142 class OptionValueBoolean; variable
874 OptionValueBoolean m_verbose;
3769 lldb/include/lldb/Interpreter/OptionValueBoolean.h4091 lldb/source/Interpreter/OptionValueBoolean.cpp