Searched refs:OptionValue (Results 1 - 25 of 51) sorted by relevance

123

/freebsd-13-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValue.cpp1 //===-- OptionValue.cpp ---------------------------------------------------===//
9 #include "lldb/Interpreter/OptionValue.h"
20 uint64_t OptionValue::GetUInt64Value(uint64_t fail_value, bool *success_ptr) {
24 case OptionValue::eTypeBoolean:
26 case OptionValue::eTypeSInt64:
28 case OptionValue::eTypeUInt64:
38 Status OptionValue::SetSubValue(const ExecutionContext *exe_ctx,
46 OptionValueBoolean *OptionValue::GetAsBoolean() {
47 if (GetType() == OptionValue::eTypeBoolean)
52 const OptionValueBoolean *OptionValue
[all...]
H A DProperty.cpp27 case OptionValue::eTypeInvalid:
28 case OptionValue::eTypeProperties:
30 case OptionValue::eTypeArch:
38 case OptionValue::eTypeArgs:
39 // "definition.default_uint_value" is always a OptionValue::Type
43 case OptionValue::eTypeArray:
44 // "definition.default_uint_value" is always a OptionValue::Type
46 std::make_shared<OptionValueArray>(OptionValue::ConvertTypeToMask(
47 (OptionValue::Type)definition.default_uint_value));
50 case OptionValue
[all...]
H A DOptionValueFileSpec.cpp22 : OptionValue(), m_current_value(), m_default_value(), m_data_sp(),
28 : OptionValue(), m_current_value(value), m_default_value(value),
36 : OptionValue(), m_current_value(current_value),
92 error = OptionValue::SetValueFromString(value, op);
H A DOptionValueProperties.cpp24 : OptionValue(), m_name(name), m_properties(), m_name_to_index() {}
28 : OptionValue(global_properties),
35 // settings get new OptionValue instances created for them.
286 OptionValue *value = property->GetValue().get();
305 OptionValue *value = property->GetValue().get();
324 OptionValue *value = property->GetValue().get();
335 OptionValue *value = property->GetValue().get();
357 OptionValue *value = property->GetValue().get();
368 OptionValue *value = property->GetValue().get();
380 OptionValue *valu
[all...]
H A DOptionValueChar.cpp55 error = OptionValue::SetValueFromString(value, op);
H A DOptionValueFormat.cpp54 error = OptionValue::SetValueFromString(value, op);
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueArgs.h20 OptionValue::ConvertTypeToMask(OptionValue::eTypeString)) {}
H A DOptionValueUUID.h13 #include "lldb/Interpreter/OptionValue.h"
17 class OptionValueUUID : public OptionValue {
19 OptionValueUUID() : OptionValue(), m_uuid() {}
21 OptionValueUUID(const UUID &uuid) : OptionValue(), m_uuid(uuid) {}
27 OptionValue::Type GetType() const override { return eTypeUUID; }
H A DOptionValueArch.h12 #include "lldb/Interpreter/OptionValue.h"
18 class OptionValueArch : public OptionValue {
20 OptionValueArch() : OptionValue(), m_current_value(), m_default_value() {}
23 : OptionValue(), m_current_value(triple), m_default_value() {
28 : OptionValue(), m_current_value(value), m_default_value(value) {}
31 : OptionValue(), m_current_value(current_value),
38 OptionValue::Type GetType() const override { return eTypeArch; }
H A DOptionValueUInt64.h13 #include "lldb/Interpreter/OptionValue.h"
17 class OptionValueUInt64 : public OptionValue {
19 OptionValueUInt64() : OptionValue(), m_current_value(0), m_default_value(0) {}
22 : OptionValue(), m_current_value(value), m_default_value(value) {}
25 : OptionValue(), m_current_value(current_value),
38 OptionValue::Type GetType() const override { return eTypeUInt64; }
H A DOptionValuePathMappings.h12 #include "lldb/Interpreter/OptionValue.h"
17 class OptionValuePathMappings : public OptionValue {
20 : OptionValue(), m_path_mappings(), m_notify_changes(notify_changes) {}
26 OptionValue::Type GetType() const override { return eTypePathMap; }
H A DOptionValueSInt64.h13 #include "lldb/Interpreter/OptionValue.h"
17 class OptionValueSInt64 : public OptionValue {
20 : OptionValue(), m_current_value(0), m_default_value(0),
24 : OptionValue(), m_current_value(value), m_default_value(value),
28 : OptionValue(), m_current_value(current_value),
33 : OptionValue(rhs), m_current_value(rhs.m_current_value),
41 OptionValue::Type GetType() const override { return eTypeSInt64; }
H A DOptionValueString.h16 #include "lldb/Interpreter/OptionValue.h"
20 class OptionValueString : public OptionValue {
27 : OptionValue(), m_current_value(), m_default_value(), m_options(),
31 : OptionValue(), m_current_value(), m_default_value(), m_options(),
35 : OptionValue(), m_current_value(), m_default_value(), m_options(),
44 : OptionValue(), m_current_value(), m_default_value(), m_options(),
54 : OptionValue(), m_current_value(), m_default_value(), m_options(),
64 : OptionValue(), m_current_value(), m_default_value(), m_options(),
76 OptionValue::Type GetType() const override { return eTypeString; }
H A DOptionValueBoolean.h12 #include "lldb/Interpreter/OptionValue.h"
16 class OptionValueBoolean : public OptionValue {
19 : OptionValue(), m_current_value(value), m_default_value(value) {}
21 : OptionValue(), m_current_value(current_value),
28 OptionValue::Type GetType() const override { return eTypeBoolean; }
H A DOptionValueChar.h12 #include "lldb/Interpreter/OptionValue.h"
16 class OptionValueChar : public OptionValue {
19 : OptionValue(), m_current_value(value), m_default_value(value) {}
22 : OptionValue(), m_current_value(current_value),
29 OptionValue::Type GetType() const override { return eTypeChar; }
H A DOptionValueFileSpecList.h15 #include "lldb/Interpreter/OptionValue.h"
19 class OptionValueFileSpecList : public OptionValue {
21 OptionValueFileSpecList() : OptionValue(), m_current_value() {}
24 : OptionValue(), m_current_value(current_value) {}
30 OptionValue::Type GetType() const override { return eTypeFileSpecList; }
H A DOptionValueFormat.h12 #include "lldb/Interpreter/OptionValue.h"
16 class OptionValueFormat : public OptionValue {
19 : OptionValue(), m_current_value(value), m_default_value(value) {}
22 : OptionValue(), m_current_value(current_value),
29 OptionValue::Type GetType() const override { return eTypeFormat; }
H A DOptionValueLanguage.h13 #include "lldb/Interpreter/OptionValue.h"
18 class OptionValueLanguage : public OptionValue {
21 : OptionValue(), m_current_value(value), m_default_value(value) {}
25 : OptionValue(), m_current_value(current_value),
32 OptionValue::Type GetType() const override { return eTypeLanguage; }
H A DOptionValueDictionary.h14 #include "lldb/Interpreter/OptionValue.h"
18 class OptionValueDictionary : public OptionValue {
22 : OptionValue(), m_type_mask(type_mask), m_values(),
29 OptionValue::Type GetType() const override { return eTypeDictionary; }
H A DOptionValueRegex.h12 #include "lldb/Interpreter/OptionValue.h"
17 class OptionValueRegex : public OptionValue {
20 : OptionValue(), m_regex(llvm::StringRef::withNullAsEmpty(value)),
27 OptionValue::Type GetType() const override { return eTypeRegex; }
H A DOptionValueEnumeration.h13 #include "lldb/Interpreter/OptionValue.h"
22 class OptionValueEnumeration : public OptionValue {
38 OptionValue::Type GetType() const override { return eTypeEnum; }
H A DOptionValueFileSpec.h12 #include "lldb/Interpreter/OptionValue.h"
19 class OptionValueFileSpec : public OptionValue {
32 OptionValue::Type GetType() const override { return eTypeFileSpec; }
H A DOptionValueFormatEntity.h13 #include "lldb/Interpreter/OptionValue.h"
17 class OptionValueFormatEntity : public OptionValue {
25 OptionValue::Type GetType() const override { return eTypeFormatEntity; }
H A DOptionValue.h1 //===-- OptionValue.h -------------------------------------------*- C++ -*-===//
22 // OptionValue
23 class OptionValue { class in namespace:lldb_private
61 OptionValue() : m_value_was_set(false) {} function in class:lldb_private::OptionValue
63 virtual ~OptionValue() = default;
117 static uint32_t ConvertTypeToMask(OptionValue::Type type) {
121 static OptionValue::Type ConvertTypeMaskToType(uint32_t type_mask) {
H A DOptionValueArray.h14 #include "lldb/Interpreter/OptionValue.h"
18 class OptionValueArray : public OptionValue {
27 OptionValue::Type GetType() const override { return eTypeArray; }

Completed in 130 milliseconds

123