Home
last modified time | relevance | path

Searched refs:OptionValueSInt64 (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DOptionValueSInt64.h17 class OptionValueSInt64 : public Cloneable<OptionValueSInt64, OptionValue> {
19 OptionValueSInt64() = default;
21 OptionValueSInt64(int64_t value) in OptionValueSInt64() function
24 OptionValueSInt64(int64_t current_value, int64_t default_value) in OptionValueSInt64() function
27 OptionValueSInt64(const OptionValueSInt64 &rhs) = default;
29 ~OptionValueSInt64() override = default;
H A DOptionValue.h236 OptionValueSInt64 *GetAsSInt64();
237 const OptionValueSInt64 *GetAsSInt64() const;
H A DOptionValueProperties.h114 OptionValueSInt64 *GetPropertyAtIndexAsOptionValueSInt64(
/freebsd/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValue.cpp225 OptionValueSInt64 *OptionValue::GetAsSInt64() { in GetAsString()
227 return static_cast<OptionValueSInt64 *>(this); in GetAsString()
231 const OptionValueSInt64 *OptionValue::GetAsSInt64() const { in GetAsUInt64()
233 return static_cast<const OptionValueSInt64 *>(this); in GetAsUInt64()
401 if (const OptionValueSInt64 *option_value = GetAsSInt64()) in SetUInt64Value()
408 if (OptionValueSInt64 *option_value = GetAsSInt64()) { in GetUUIDValue()
555 value_sp = std::make_shared<OptionValueSInt64>(); in AutoComplete()
H A DOptionValueSInt64.cpp16 void OptionValueSInt64::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()
32 Status OptionValueSInt64::SetValueFromString(llvm::StringRef value_ref, in SetValueFromString()
H A DProperty.cpp188 m_value_sp = std::make_shared<OptionValueSInt64>( in Property()
H A DOptionValueProperties.cpp260 OptionValueSInt64 *OptionValueProperties::GetPropertyAtIndexAsOptionValueSInt64( in GetPropertyAtIndexAsOptionValueSInt64()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h157 class OptionValueSInt64; variable
/freebsd/lib/clang/liblldb/
H A DMakefile331 SRCS+= Interpreter/OptionValueSInt64.cpp