Home
last modified time | relevance | path

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

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