| /freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | OptionValue.cpp | 24 case OptionValue::eTypeBoolean: in GetUInt64Value() 26 case OptionValue::eTypeSInt64: in GetUInt64Value() 28 case OptionValue::eTypeUInt64: in GetUInt64Value() 59 if (GetType() == OptionValue::eTypeChar) in GetAsChar() 64 OptionValueChar *OptionValue::GetAsChar() { in GetAsChar() 65 if (GetType() == OptionValue::eTypeChar) in GetAsChar() 95 if (GetType() == OptionValue::eTypeArch) in GetAsArch() 101 if (GetType() == OptionValue::eTypeArch) in GetAsArch() 119 if (GetType() == OptionValue::eTypeArgs) in GetAsArgs() 125 if (GetType() == OptionValue::eTypeArgs) in GetAsArgs() [all …]
|
| H A D | Property.cpp | 27 case OptionValue::eTypeInvalid: in Property() 28 case OptionValue::eTypeProperties: in Property() 30 case OptionValue::eTypeArch: in Property() 38 case OptionValue::eTypeArgs: in Property() 43 case OptionValue::eTypeArray: in Property() 50 case OptionValue::eTypeBoolean: in Property() 64 case OptionValue::eTypeChar: { in Property() 77 case OptionValue::eTypeEnum: in Property() 125 case OptionValue::eTypeFormat: in Property() 171 case OptionValue::eTypeRegex: in Property() [all …]
|
| H A D | OptionValueProperties.cpp | 234 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsArgs() 259 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexFromArgs() 282 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsBoolean() 293 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsBoolean() 315 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsEnumeration() 326 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsEnumeration() 338 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsFormatEntity() 350 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsOptionValueFileSpec() 361 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsFileSpec() 373 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsFileSpec() [all …]
|
| H A D | OptionValueDictionary.cpp | 41 OptionValue *option_value = pos->second.get(); in DumpValue() 197 error = OptionValue::SetValueFromString(llvm::StringRef(), op); in SetArgs() 316 auto copy_sp = OptionValue::DeepCopy(new_parent); in DeepCopy()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | OptionValue.h | 24 class OptionValue { 63 OptionValue() = default; 65 virtual ~OptionValue() = default; 120 static uint32_t ConvertTypeToMask(OptionValue::Type type) { in ConvertTypeToMask() 124 static OptionValue::Type ConvertTypeMaskToType(uint32_t type_mask) { in ConvertTypeMaskToType() 324 using TopmostBase = OptionValue;
|
| H A D | OptionValueArgs.h | 19 : Cloneable(OptionValue::ConvertTypeToMask(OptionValue::eTypeString)) {} in OptionValueArgs()
|
| H A D | OptionValuePathMappings.h | 18 : public Cloneable<OptionValuePathMappings, OptionValue> { 27 OptionValue::Type GetType() const override { return eTypePathMap; } in GetType()
|
| H A D | OptionValueUUID.h | 17 class OptionValueUUID : public Cloneable<OptionValueUUID, OptionValue> { 27 OptionValue::Type GetType() const override { return eTypeUUID; } in GetType()
|
| H A D | OptionValueChar.h | 16 class OptionValueChar : public Cloneable<OptionValueChar, OptionValue> { 28 OptionValue::Type GetType() const override { return eTypeChar; } in GetType()
|
| H A D | OptionValueRegex.h | 17 class OptionValueRegex : public Cloneable<OptionValueRegex, OptionValue> { 26 OptionValue::Type GetType() const override { return eTypeRegex; } in GetType()
|
| H A D | OptionValueFormatEntity.h | 18 : public Cloneable<OptionValueFormatEntity, OptionValue> { 26 OptionValue::Type GetType() const override { return eTypeFormatEntity; } in GetType()
|
| H A D | OptionValueFileColonLine.h | 20 public Cloneable<OptionValueFileColonLine, OptionValue> { 27 OptionValue::Type GetType() const override { return eTypeFileLineColumn; } in GetType()
|
| H A D | OptionValueBoolean.h | 16 class OptionValueBoolean : public Cloneable<OptionValueBoolean, OptionValue> { 27 OptionValue::Type GetType() const override { return eTypeBoolean; } in GetType()
|
| H A D | OptionValueLanguage.h | 18 class OptionValueLanguage : public Cloneable<OptionValueLanguage, OptionValue> { 31 OptionValue::Type GetType() const override { return eTypeLanguage; } in GetType()
|
| H A D | OptionValueFormat.h | 17 : public Cloneable<OptionValueFormat, OptionValue> { 29 OptionValue::Type GetType() const override { return eTypeFormat; } in GetType()
|
| H A D | OptionValueUInt64.h | 17 class OptionValueUInt64 : public Cloneable<OptionValueUInt64, OptionValue> { 36 OptionValue::Type GetType() const override { return eTypeUInt64; } in GetType()
|
| H A D | OptionValueFileSpecList.h | 20 : public Cloneable<OptionValueFileSpecList, OptionValue> { 31 OptionValue::Type GetType() const override { return eTypeFileSpecList; } in GetType()
|
| H A D | OptionValueEnumeration.h | 23 : public Cloneable<OptionValueEnumeration, OptionValue> { 39 OptionValue::Type GetType() const override { return eTypeEnum; } in GetType()
|
| H A D | OptionValueArch.h | 18 class OptionValueArch : public Cloneable<OptionValueArch, OptionValue> { 36 OptionValue::Type GetType() const override { return eTypeArch; } in GetType()
|
| H A D | OptionValueFileSpec.h | 20 class OptionValueFileSpec : public Cloneable<OptionValueFileSpec, OptionValue> { 33 OptionValue::Type GetType() const override { return eTypeFileSpec; } in GetType()
|
| H A D | OptionValueSInt64.h | 17 class OptionValueSInt64 : public Cloneable<OptionValueSInt64, OptionValue> { 33 OptionValue::Type GetType() const override { return eTypeSInt64; } in GetType()
|
| H A D | OptionValueDictionary.h | 19 : public Cloneable<OptionValueDictionary, OptionValue> { 29 OptionValue::Type GetType() const override { return eTypeDictionary; } in GetType()
|
| H A D | OptionValueString.h | 20 class OptionValueString : public Cloneable<OptionValueString, OptionValue> { 67 OptionValue::Type GetType() const override { return eTypeString; } in GetType()
|
| H A D | OptionValueArray.h | 18 class OptionValueArray : public Cloneable<OptionValueArray, OptionValue> { 27 OptionValue::Type GetType() const override { return eTypeArray; } in GetType()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CommandLine.h | 611 struct OptionValue final 613 OptionValue() = default; 627 struct OptionValue<cl::boolOrDefault> final 631 OptionValue() = default; 648 OptionValue() = default; 818 OptionValue<DataType> V; 921 using OptVal = OptionValue<DataType>; 1218 OptionValue<DT> OV = V; 1327 OptionValue<DataType> Default; 1374 OptionValue<DataType> Default; [all …]
|