/external/llvm-project/lldb/source/Interpreter/ |
D | OptionValue.cpp | 20 uint64_t OptionValue::GetUInt64Value(uint64_t fail_value, bool *success_ptr) { in GetUInt64Value() 24 case OptionValue::eTypeBoolean: in GetUInt64Value() 26 case OptionValue::eTypeSInt64: in GetUInt64Value() 28 case OptionValue::eTypeUInt64: in GetUInt64Value() 38 Status OptionValue::SetSubValue(const ExecutionContext *exe_ctx, in SetSubValue() 46 OptionValueBoolean *OptionValue::GetAsBoolean() { in GetAsBoolean() 47 if (GetType() == OptionValue::eTypeBoolean) in GetAsBoolean() 52 const OptionValueBoolean *OptionValue::GetAsBoolean() const { in GetAsBoolean() 53 if (GetType() == OptionValue::eTypeBoolean) in GetAsBoolean() 58 const OptionValueChar *OptionValue::GetAsChar() const { in GetAsChar() [all …]
|
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() 46 std::make_shared<OptionValueArray>(OptionValue::ConvertTypeToMask( in Property() 47 (OptionValue::Type)definition.default_uint_value)); in Property() 50 case OptionValue::eTypeBoolean: in Property() 64 case OptionValue::eTypeChar: { in Property() 70 case OptionValue::eTypeDictionary: in Property() [all …]
|
D | OptionValueProperties.cpp | 24 : OptionValue(), m_name(name), m_properties(), m_name_to_index() {} in OptionValueProperties() 28 : OptionValue(global_properties), in OptionValueProperties() 254 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsArgs() 273 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexFromArgs() 292 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsBoolean() 303 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsBoolean() 325 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsEnumeration() 336 OptionValue *value = property->GetValue().get(); in SetPropertyAtIndexAsEnumeration() 348 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsFormatEntity() 360 OptionValue *value = property->GetValue().get(); in GetPropertyAtIndexAsOptionValueFileSpec() [all …]
|
D | OptionValueFileSpec.cpp | 22 : OptionValue(), m_current_value(), m_default_value(), m_data_sp(), in OptionValueFileSpec() 28 : OptionValue(), m_current_value(value), m_default_value(value), in OptionValueFileSpec() 36 : OptionValue(), m_current_value(current_value), in OptionValueFileSpec() 85 error = OptionValue::SetValueFromString(value, op); in SetValueFromString()
|
D | OptionValueFileColonLine.cpp | 25 : OptionValue(), m_file_spec(), m_line_number(LLDB_INVALID_LINE_NUMBER), in OptionValueFileColonLine() 30 : OptionValue(), m_file_spec(), m_line_number(LLDB_INVALID_LINE_NUMBER), in OptionValueFileColonLine() 131 error = OptionValue::SetValueFromString(value, op); in SetValueFromString()
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | OptionValueArch.h | 18 class OptionValueArch : public OptionValue { 20 OptionValueArch() : OptionValue(), m_current_value(), m_default_value() {} in OptionValueArch() 23 : OptionValue(), m_current_value(triple), m_default_value() { in OptionValueArch() 28 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueArch() 31 : OptionValue(), m_current_value(current_value), in OptionValueArch() 38 OptionValue::Type GetType() const override { return eTypeArch; } in GetType()
|
D | OptionValueString.h | 20 class OptionValueString : public OptionValue { 27 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValueString() 31 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValue() function 35 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValueString() 44 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValueString() 54 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValue() function 64 : OptionValue(), m_current_value(), m_default_value(), m_options(), in OptionValue() function 76 OptionValue::Type GetType() const override { return eTypeString; } in GetType()
|
D | OptionValueSInt64.h | 17 class OptionValueSInt64 : public OptionValue { 20 : OptionValue(), m_current_value(0), m_default_value(0), in OptionValueSInt64() 24 : OptionValue(), m_current_value(value), m_default_value(value), in OptionValueSInt64() 28 : OptionValue(), m_current_value(current_value), in OptionValueSInt64() 33 : OptionValue(rhs), m_current_value(rhs.m_current_value), in OptionValueSInt64() 41 OptionValue::Type GetType() const override { return eTypeSInt64; } in GetType()
|
D | OptionValueUInt64.h | 17 class OptionValueUInt64 : public OptionValue { 19 OptionValueUInt64() : OptionValue(), m_current_value(0), m_default_value(0) {} in OptionValueUInt64() 22 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueUInt64() 25 : OptionValue(), m_current_value(current_value), in OptionValueUInt64() 38 OptionValue::Type GetType() const override { return eTypeUInt64; } in GetType()
|
D | OptionValueUUID.h | 17 class OptionValueUUID : public OptionValue { 19 OptionValueUUID() : OptionValue(), m_uuid() {} in OptionValueUUID() 21 OptionValueUUID(const UUID &uuid) : OptionValue(), m_uuid(uuid) {} in OptionValueUUID() 27 OptionValue::Type GetType() const override { return eTypeUUID; } in GetType()
|
D | OptionValueChar.h | 16 class OptionValueChar : public OptionValue { 19 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueChar() 22 : OptionValue(), m_current_value(current_value), in OptionValueChar() 29 OptionValue::Type GetType() const override { return eTypeChar; } in GetType()
|
D | OptionValueLanguage.h | 18 class OptionValueLanguage : public OptionValue { 21 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueLanguage() 25 : OptionValue(), m_current_value(current_value), in OptionValueLanguage() 32 OptionValue::Type GetType() const override { return eTypeLanguage; } in GetType()
|
D | OptionValueBoolean.h | 16 class OptionValueBoolean : public OptionValue { 19 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueBoolean() 21 : OptionValue(), m_current_value(current_value), in OptionValueBoolean() 28 OptionValue::Type GetType() const override { return eTypeBoolean; } in GetType()
|
D | OptionValueFormat.h | 16 class OptionValueFormat : public OptionValue { 19 : OptionValue(), m_current_value(value), m_default_value(value) {} in OptionValueFormat() 22 : OptionValue(), m_current_value(current_value), in OptionValueFormat() 29 OptionValue::Type GetType() const override { return eTypeFormat; } in GetType()
|
D | OptionValueFileSpecList.h | 19 class OptionValueFileSpecList : public OptionValue { 21 OptionValueFileSpecList() : OptionValue(), m_current_value() {} in OptionValueFileSpecList() 24 : OptionValue(), m_current_value(current_value) {} in OptionValueFileSpecList() 30 OptionValue::Type GetType() const override { return eTypeFileSpecList; } in GetType()
|
D | OptionValuePathMappings.h | 17 class OptionValuePathMappings : public OptionValue { 20 : OptionValue(), m_path_mappings(), m_notify_changes(notify_changes) {} in OptionValuePathMappings() 26 OptionValue::Type GetType() const override { return eTypePathMap; } in GetType()
|
D | OptionValueRegex.h | 17 class OptionValueRegex : public OptionValue { 20 : OptionValue(), m_regex(llvm::StringRef::withNullAsEmpty(value)), in OptionValue() function 27 OptionValue::Type GetType() const override { return eTypeRegex; } in GetType()
|
D | OptionValueDictionary.h | 18 class OptionValueDictionary : public OptionValue { 22 : OptionValue(), m_type_mask(type_mask), m_values(), in OptionValue() function 29 OptionValue::Type GetType() const override { return eTypeDictionary; } in GetType()
|
D | OptionValue.h | 23 class OptionValue { 62 OptionValue() : m_value_was_set(false) {} in OptionValue() function 64 virtual ~OptionValue() = default; 118 static uint32_t ConvertTypeToMask(OptionValue::Type type) { in ConvertTypeToMask() 122 static OptionValue::Type ConvertTypeMaskToType(uint32_t type_mask) { in ConvertTypeMaskToType()
|
D | OptionValueArgs.h | 20 OptionValue::ConvertTypeToMask(OptionValue::eTypeString)) {} in OptionValueArgs()
|
D | OptionValueFileColonLine.h | 19 class OptionValueFileColonLine : public OptionValue { 26 OptionValue::Type GetType() const override { return eTypeFileLineColumn; } in GetType()
|
/external/llvm/include/llvm/Support/ |
D | CommandLine.h | 432 template <class DataType> struct OptionValue; 439 typedef OptionValue<DataType> WrapperType; 508 struct OptionValue final 510 OptionValue() = default; 512 OptionValue(const DataType &V) { this->setValue(V); } 514 template <class DT> OptionValue<DataType> &operator=(const DT &V) { 523 struct OptionValue<cl::boolOrDefault> final 527 OptionValue() {} 529 OptionValue(const cl::boolOrDefault &V) { this->setValue(V); } 530 OptionValue<cl::boolOrDefault> &operator=(const cl::boolOrDefault &V) { [all …]
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | CommandLine.h | 451 template <class DataType> struct OptionValue; 458 typedef OptionValue<DataType> WrapperType; 527 struct OptionValue final 529 OptionValue() = default; 531 OptionValue(const DataType &V) { this->setValue(V); } 534 template <class DT> OptionValue<DataType> &operator=(const DT &V) { 543 struct OptionValue<cl::boolOrDefault> final 547 OptionValue() = default; 549 OptionValue(const cl::boolOrDefault &V) { this->setValue(V); } 551 OptionValue<cl::boolOrDefault> &operator=(const cl::boolOrDefault &V) { [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | CommandLine.h | 528 template <class DataType> struct OptionValue; 535 using WrapperType = OptionValue<DataType>; 604 struct OptionValue final 606 OptionValue() = default; 608 OptionValue(const DataType &V) { this->setValue(V); } 611 template <class DT> OptionValue<DataType> &operator=(const DT &V) { 620 struct OptionValue<cl::boolOrDefault> final 624 OptionValue() = default; 626 OptionValue(const cl::boolOrDefault &V) { this->setValue(V); } 628 OptionValue<cl::boolOrDefault> &operator=(const cl::boolOrDefault &V) { [all …]
|
/external/llvm-project/llvm/include/llvm/Support/ |
D | CommandLine.h | 519 template <class DataType> struct OptionValue; 526 using WrapperType = OptionValue<DataType>; 595 struct OptionValue final 597 OptionValue() = default; 599 OptionValue(const DataType &V) { this->setValue(V); } 602 template <class DT> OptionValue<DataType> &operator=(const DT &V) { 611 struct OptionValue<cl::boolOrDefault> final 615 OptionValue() = default; 617 OptionValue(const cl::boolOrDefault &V) { this->setValue(V); } 619 OptionValue<cl::boolOrDefault> &operator=(const cl::boolOrDefault &V) { [all …]
|