Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueFormatEntity.h48 void SetCurrentValue(const FormatEntity::Entry &value) { in SetCurrentValue() function
H A DOptionValueUUID.h51 void SetCurrentValue(const UUID &value) { m_uuid = value; } in SetCurrentValue() function
H A DOptionValueRegex.h49 void SetCurrentValue(const char *value) { in SetCurrentValue() function
H A DOptionValueFileSpecList.h55 void SetCurrentValue(const FileSpecList &value) { in SetCurrentValue() function
H A DOptionValueFormat.h51 void SetCurrentValue(lldb::Format value) { m_current_value = value; } in SetCurrentValue() function
H A DOptionValueLanguage.h53 void SetCurrentValue(lldb::LanguageType value) { m_current_value = value; } in SetCurrentValue() function
H A DOptionValueBoolean.h74 void SetCurrentValue(bool value) { m_current_value = value; } in SetCurrentValue() function
H A DOptionValueChar.h57 void SetCurrentValue(char value) { m_current_value = value; } 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 DOptionValueFileSpec.h64 void SetCurrentValue(const FileSpec &value, bool set_value_was_set) { in SetCurrentValue() function
H A DOptionValueSInt64.h62 bool SetCurrentValue(int64_t value) { in SetCurrentValue() function
H A DOptionValueUInt64.h67 bool SetCurrentValue(uint64_t value) { in SetCurrentValue() function
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueString.cpp120 Status OptionValueString::SetCurrentValue(llvm::StringRef value) { in SetCurrentValue() function in OptionValueString