Home
last modified time | relevance | path

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

123

/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValue.cpp24 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 DProperty.cpp27 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 DOptionValueProperties.cpp234 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 DOptionValueDictionary.cpp41 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 DOptionValue.h24 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 DOptionValueArgs.h19 : Cloneable(OptionValue::ConvertTypeToMask(OptionValue::eTypeString)) {} in OptionValueArgs()
H A DOptionValuePathMappings.h18 : public Cloneable<OptionValuePathMappings, OptionValue> {
27 OptionValue::Type GetType() const override { return eTypePathMap; } in GetType()
H A DOptionValueUUID.h17 class OptionValueUUID : public Cloneable<OptionValueUUID, OptionValue> {
27 OptionValue::Type GetType() const override { return eTypeUUID; } in GetType()
H A DOptionValueChar.h16 class OptionValueChar : public Cloneable<OptionValueChar, OptionValue> {
28 OptionValue::Type GetType() const override { return eTypeChar; } in GetType()
H A DOptionValueRegex.h17 class OptionValueRegex : public Cloneable<OptionValueRegex, OptionValue> {
26 OptionValue::Type GetType() const override { return eTypeRegex; } in GetType()
H A DOptionValueFormatEntity.h18 : public Cloneable<OptionValueFormatEntity, OptionValue> {
26 OptionValue::Type GetType() const override { return eTypeFormatEntity; } in GetType()
H A DOptionValueFileColonLine.h20 public Cloneable<OptionValueFileColonLine, OptionValue> {
27 OptionValue::Type GetType() const override { return eTypeFileLineColumn; } in GetType()
H A DOptionValueBoolean.h16 class OptionValueBoolean : public Cloneable<OptionValueBoolean, OptionValue> {
27 OptionValue::Type GetType() const override { return eTypeBoolean; } in GetType()
H A DOptionValueLanguage.h18 class OptionValueLanguage : public Cloneable<OptionValueLanguage, OptionValue> {
31 OptionValue::Type GetType() const override { return eTypeLanguage; } in GetType()
H A DOptionValueFormat.h17 : public Cloneable<OptionValueFormat, OptionValue> {
29 OptionValue::Type GetType() const override { return eTypeFormat; } in GetType()
H A DOptionValueUInt64.h17 class OptionValueUInt64 : public Cloneable<OptionValueUInt64, OptionValue> {
36 OptionValue::Type GetType() const override { return eTypeUInt64; } in GetType()
H A DOptionValueFileSpecList.h20 : public Cloneable<OptionValueFileSpecList, OptionValue> {
31 OptionValue::Type GetType() const override { return eTypeFileSpecList; } in GetType()
H A DOptionValueEnumeration.h23 : public Cloneable<OptionValueEnumeration, OptionValue> {
39 OptionValue::Type GetType() const override { return eTypeEnum; } in GetType()
H A DOptionValueArch.h18 class OptionValueArch : public Cloneable<OptionValueArch, OptionValue> {
36 OptionValue::Type GetType() const override { return eTypeArch; } in GetType()
H A DOptionValueFileSpec.h20 class OptionValueFileSpec : public Cloneable<OptionValueFileSpec, OptionValue> {
33 OptionValue::Type GetType() const override { return eTypeFileSpec; } in GetType()
H A DOptionValueSInt64.h17 class OptionValueSInt64 : public Cloneable<OptionValueSInt64, OptionValue> {
33 OptionValue::Type GetType() const override { return eTypeSInt64; } in GetType()
H A DOptionValueDictionary.h19 : public Cloneable<OptionValueDictionary, OptionValue> {
29 OptionValue::Type GetType() const override { return eTypeDictionary; } in GetType()
H A DOptionValueString.h20 class OptionValueString : public Cloneable<OptionValueString, OptionValue> {
67 OptionValue::Type GetType() const override { return eTypeString; } in GetType()
H A DOptionValueArray.h18 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 DCommandLine.h611 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 …]

123