Home
last modified time | relevance | path

Searched defs:SetCurrentValue (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DOptionValueUUID.h47 void SetCurrentValue(const UUID &value) { m_uuid = value; } in SetCurrentValue() function
H A DOptionValueRegex.h45 void SetCurrentValue(const char *value) { in SetCurrentValue() function
H A DOptionValueFormatEntity.h46 void SetCurrentValue(const FormatEntity::Entry &value) { in SetCurrentValue() function
H A DOptionValueFileSpecList.h55 void SetCurrentValue(const FileSpecList &value) { in SetCurrentValue() function
H A DOptionValueFormat.h49 void SetCurrentValue(lldb::Format value) { m_current_value = value; } in SetCurrentValue() function
H A DOptionValueLanguage.h51 void SetCurrentValue(lldb::LanguageType value) { m_current_value = value; } in SetCurrentValue() function
H A DOptionValueBoolean.h70 void SetCurrentValue(bool value) { m_current_value = value; } in SetCurrentValue() function
H A DOptionValueChar.h53 void SetCurrentValue(char value) { m_current_value = value; } in SetCurrentValue() function
H A DOptionValueUInt64.h63 void SetCurrentValue(uint64_t value) { m_current_value = value; } in SetCurrentValue() function
H A DOptionValueFileSpec.h60 void SetCurrentValue(const FileSpec &value, bool set_value_was_set) { in SetCurrentValue() function
H A DOptionValueArch.h61 void SetCurrentValue(const ArchSpec &value, bool set_value_was_set) { in SetCurrentValue() function
H A DOptionValueEnumeration.h67 void SetCurrentValue(enum_type value) { m_current_value = value; } in SetCurrentValue() function
H A DOptionValueSInt64.h58 bool SetCurrentValue(int64_t value) { in SetCurrentValue() function
/llvm-project-15.0.7/lldb/source/Interpreter/
H A DOptionValueString.cpp120 Status OptionValueString::SetCurrentValue(llvm::StringRef value) { in SetCurrentValue() function in OptionValueString