Home
last modified time | relevance | path

Searched refs:OptionValue (Results 1 – 25 of 66) sorted by relevance

123

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValue.cpp26 case OptionValue::eTypeBoolean: in GetUInt64Value()
28 case OptionValue::eTypeSInt64: in GetUInt64Value()
30 case OptionValue::eTypeUInt64: in GetUInt64Value()
61 if (GetType() == OptionValue::eTypeChar) in GetAsChar()
66 OptionValueChar *OptionValue::GetAsChar() { in GetAsChar()
67 if (GetType() == OptionValue::eTypeChar) in GetAsChar()
97 if (GetType() == OptionValue::eTypeArch) in GetAsArch()
103 if (GetType() == OptionValue::eTypeArch) in GetAsArch()
121 if (GetType() == OptionValue::eTypeArgs) in GetAsArgs()
127 if (GetType() == OptionValue::eTypeArgs) in GetAsArgs()
[all …]
H A DProperty.cpp26 case OptionValue::eTypeInvalid: in Property()
27 case OptionValue::eTypeProperties: in Property()
29 case OptionValue::eTypeArch: in Property()
36 case OptionValue::eTypeArgs: in Property()
41 case OptionValue::eTypeArray: in Property()
47 case OptionValue::eTypeBoolean: in Property()
60 case OptionValue::eTypeChar: { in Property()
72 case OptionValue::eTypeEnum: in Property()
114 case OptionValue::eTypeFormat: in Property()
160 case OptionValue::eTypeRegex: in Property()
[all …]
H A DOptionValueProperties.cpp29 : OptionValue(global_properties), in OptionValueProperties()
288 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsArgs()
307 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexFromArgs()
326 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsBoolean()
337 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsBoolean()
359 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsEnumeration()
370 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsEnumeration()
382 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsFormatEntity()
394 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsOptionValueFileSpec()
405 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsFileSpec()
[all …]
H A DOptionValueFileSpec.cpp23 : OptionValue(), m_current_value(), m_default_value(), m_data_sp(), in OptionValueFileSpec()
29 : OptionValue(), m_current_value(value), m_default_value(value), in OptionValueFileSpec()
37 : OptionValue(), m_current_value(current_value), in OptionValueFileSpec()
93 error = OptionValue::SetValueFromString(value, op); in SetValueFromString()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueString.h21 class OptionValueString : public OptionValue {
28 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValueString()
32 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValue() function
36 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValueString()
45 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValueString()
55 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValue() function
65 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValue() function
79 OptionValue::Type GetType() const override { return eTypeString; } in GetType()
H A DOptionValueArch.h19 class OptionValueArch : public OptionValue {
21 OptionValueArch() : OptionValue(), m_current_value(), m_default_value() {} in OptionValueArch()
24 : OptionValue(), m_current_value(triple), m_default_value() { in OptionValueArch()
29 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueArch()
32 : OptionValue(), m_current_value(current_value), in OptionValueArch()
41 OptionValue::Type GetType() const override { return eTypeArch; } in GetType()
H A DOptionValueSInt64.h18 class OptionValueSInt64 : public OptionValue {
21 : OptionValue(), m_current_value(0), m_default_value(0), in OptionValueSInt64()
25 : OptionValue(), m_current_value(value), m_default_value(value), in OptionValueSInt64()
29 : OptionValue(), m_current_value(current_value), in OptionValueSInt64()
34 : OptionValue(rhs), m_current_value(rhs.m_current_value), in OptionValueSInt64()
44 OptionValue::Type GetType() const override { return eTypeSInt64; } in GetType()
H A DOptionValueUInt64.h18 class OptionValueUInt64 : public OptionValue {
20 OptionValueUInt64() : OptionValue(), m_current_value(0), m_default_value(0) {} in OptionValueUInt64()
23 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueUInt64()
26 : OptionValue(), m_current_value(current_value), in OptionValueUInt64()
43 OptionValue::Type GetType() const override { return eTypeUInt64; } in GetType()
H A DOptionValueFileSpecList.h18 class OptionValueFileSpecList : public OptionValue {
20 OptionValueFileSpecList() : OptionValue(), m_current_value() {} in OptionValueFileSpecList()
23 : OptionValue(), m_current_value(current_value) {} in OptionValueFileSpecList()
31 OptionValue::Type GetType() const override { return eTypeFileSpecList; } in GetType()
H A DOptionValueUUID.h18 class OptionValueUUID : public OptionValue {
20 OptionValueUUID() : OptionValue(), m_uuid() {} in OptionValueUUID()
22 OptionValueUUID(const UUID &uuid) : OptionValue(), m_uuid(uuid) {} in OptionValueUUID()
30 OptionValue::Type GetType() const override { return eTypeUUID; } in GetType()
H A DOptionValueChar.h17 class OptionValueChar : public OptionValue {
20 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueChar()
23 : OptionValue(), m_current_value(current_value), in OptionValueChar()
32 OptionValue::Type GetType() const override { return eTypeChar; } in GetType()
H A DOptionValueFormat.h17 class OptionValueFormat : public OptionValue {
20 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueFormat()
23 : OptionValue(), m_current_value(current_value), in OptionValueFormat()
32 OptionValue::Type GetType() const override { return eTypeFormat; } in GetType()
H A DOptionValueBoolean.h17 class OptionValueBoolean : public OptionValue {
20 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueBoolean()
22 : OptionValue(), m_current_value(current_value), in OptionValueBoolean()
31 OptionValue::Type GetType() const override { return eTypeBoolean; } in GetType()
H A DOptionValueLanguage.h19 class OptionValueLanguage : public OptionValue {
22 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueLanguage()
26 : OptionValue(), m_current_value(current_value), in OptionValueLanguage()
35 OptionValue::Type GetType() const override { return eTypeLanguage; } in GetType()
H A DOptionValue.h26 class OptionValue {
64 OptionValue() in OptionValue() function
67 OptionValue(const OptionValue &rhs) in OptionValue() function
71 virtual ~OptionValue() = default;
131 static uint32_t ConvertTypeToMask(OptionValue::Type type) { in ConvertTypeToMask()
135 static OptionValue::Type ConvertTypeMaskToType(uint32_t type_mask) { in ConvertTypeMaskToType()
H A DOptionValuePathMappings.h18 class OptionValuePathMappings : public OptionValue {
21 : OptionValue(), m_path_mappings(), m_notify_changes(notify_changes) {} in OptionValuePathMappings()
29 OptionValue::Type GetType() const override { return eTypePathMap; } in GetType()
H A DOptionValueRegex.h18 class OptionValueRegex : public OptionValue {
21 : OptionValue(), m_regex(llvm::StringRef::withNullAsEmpty(value)) {} in OptionValue() function
29 OptionValue::Type GetType() const override { return eTypeRegex; } in GetType()
H A DOptionValueDictionary.h19 class OptionValueDictionary : public OptionValue {
23 : OptionValue(), m_type_mask(type_mask), m_values(), in OptionValue() function
32 OptionValue::Type GetType() const override { return eTypeDictionary; } in GetType()
H A DOptionValueArgs.h21 OptionValue::ConvertTypeToMask(OptionValue::eTypeString)) {} in OptionValueArgs()
H A DOptionValueFormatEntity.h18 class OptionValueFormatEntity : public OptionValue {
28 OptionValue::Type GetType() const override { return eTypeFormatEntity; } in GetType()
H A DOptionValueEnumeration.h23 class OptionValueEnumeration : public OptionValue {
41 OptionValue::Type GetType() const override { return eTypeEnum; } in GetType()
H A DOptionValueFileSpec.h20 class OptionValueFileSpec : public OptionValue {
35 OptionValue::Type GetType() const override { return eTypeFileSpec; } in GetType()
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DCommandLine.h555 struct OptionValue final
557 OptionValue() = default;
571 struct OptionValue<cl::boolOrDefault> final
575 OptionValue() = default;
592 OptionValue() = default;
762 OptionValue<DataType> V;
865 using OptVal = OptionValue<DataType>;
1100 OptionValue<DT> OV = V;
1205 OptionValue<DataType> Default;
1252 OptionValue<DataType> Default;
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDebugger.cpp202 {"disassembly-format", OptionValue::eTypeFormatEntity, true, 0,
207 {"frame-format", OptionValue::eTypeFormatEntity, true, 0,
215 {"prompt", OptionValue::eTypeString, true,
224 {"stop-disassembly-display", OptionValue::eTypeEnum, true,
236 {"stop-show-column", OptionValue::eTypeEnum, false,
250 {"term-width", OptionValue::eTypeSInt64, true, 80, nullptr, {},
252 {"thread-format", OptionValue::eTypeFormatEntity, true, 0,
256 {"thread-stop-format", OptionValue::eTypeFormatEntity, true, 0,
263 {"use-color", OptionValue::eTypeBoolean, true, true, nullptr, {},
275 {"tab-size", OptionValue::eTypeUInt64, true, 4, nullptr, {},
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Target/
H A DTarget.cpp3282 {"prefer-dynamic-value", OptionValue::eTypeEnum, false,
3330 {"arg0", OptionValue::eTypeString, false, 0, nullptr, {},
3333 {"run-args", OptionValue::eTypeArgs, false, 0, nullptr, {},
3337 {"env-vars", OptionValue::eTypeDictionary, false, OptionValue::eTypeString,
3381 {"x86-disassembly-flavor", OptionValue::eTypeEnum, false,
3387 {"hex-immediate-style", OptionValue::eTypeEnum, false,
3423 {"trap-handler-names", OptionValue::eTypeArray, true,
3424 OptionValue::eTypeString, nullptr, {},
4150 void *target_property_ptr, OptionValue *) { in DetachOnErrorValueChangedCallback() argument
4160 void *target_property_ptr, OptionValue *) { in DisableASLRValueChangedCallback() argument
[all …]

123