Searched refs:OptionValueBoolean (Results 1 - 11 of 11) sorted by relevance

/external/lldb/include/lldb/Interpreter/
H A DOptionGroupBoolean.h18 #include "lldb/Interpreter/OptionValueBoolean.h"
63 OptionValueBoolean &
69 const OptionValueBoolean &
76 OptionValueBoolean m_value;
H A DOptionGroupOutputFile.h18 #include "lldb/Interpreter/OptionValueBoolean.h"
56 const OptionValueBoolean &
70 OptionValueBoolean m_append;
H A DOptionValueBoolean.h1 //===-- OptionValueBoolean.h ------------------------------------*- C++ -*-===//
21 class OptionValueBoolean : public OptionValue class in namespace:lldb_private
24 OptionValueBoolean (bool value) : function in class:lldb_private::OptionValueBoolean
30 OptionValueBoolean (bool current_value, function in class:lldb_private::OptionValueBoolean
39 ~OptionValueBoolean()
83 /// This allows code to check a OptionValueBoolean in conditions.
86 /// OptionValueBoolean bool_value(...);
H A DOptionValue.h222 OptionValueBoolean *
225 const OptionValueBoolean *
/external/lldb/source/Interpreter/
H A DOptionValueBoolean.cpp1 //===-- OptionValueBoolean.cpp ------------------------------------*- C++ -*-===//
10 #include "lldb/Interpreter/OptionValueBoolean.h"
24 OptionValueBoolean::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)
39 OptionValueBoolean::SetValueFromCString (const char *value_cstr,
83 OptionValueBoolean::DeepCopy () const
85 return OptionValueSP(new OptionValueBoolean(*this));
89 OptionValueBoolean::AutoComplete (CommandInterpreter &interpreter,
H A DOptionValue.cpp35 case OptionValue::eTypeBoolean: return static_cast<OptionValueBoolean *>(this)->GetCurrentValue();
58 OptionValueBoolean *
62 return static_cast<OptionValueBoolean *>(this);
66 const OptionValueBoolean *
70 return static_cast<const OptionValueBoolean *>(this);
327 const OptionValueBoolean *option_value = GetAsBoolean ();
336 OptionValueBoolean *option_value = GetAsBoolean ();
549 case 1u << eTypeBoolean: value_sp.reset(new OptionValueBoolean(false)); break;
H A DAndroid.mk36 OptionValueBoolean.cpp \
H A DProperty.cpp59 m_value_sp.reset (new OptionValueBoolean(Args::StringToBoolean (definition.default_cstr_value, false, NULL)));
61 m_value_sp.reset (new OptionValueBoolean(definition.default_uint_value != 0));
/external/lldb/source/Commands/
H A DCommandObjectRegister.cpp342 OptionValueBoolean dump_all_sets;
343 OptionValueBoolean alternate_name;
H A DCommandObjectCommands.cpp29 #include "lldb/Interpreter/OptionValueBoolean.h"
139 OptionValueBoolean m_clear;
369 OptionValueBoolean m_stop_on_error;
/external/lldb/include/lldb/
H A Dlldb-forward.h130 class OptionValueBoolean;
306 typedef std::shared_ptr<lldb_private::OptionValueBoolean> OptionValueBooleanSP;

Completed in 140 milliseconds