Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionValueSInt64.h18 class OptionValueSInt64 : public OptionValue {
20 OptionValueSInt64() in OptionValueSInt64() function
24 OptionValueSInt64(int64_t value) in OptionValueSInt64() function
28 OptionValueSInt64(int64_t current_value, int64_t default_value) in OptionValueSInt64() function
33 OptionValueSInt64(const OptionValueSInt64 &rhs) in OptionValueSInt64() function
38 ~OptionValueSInt64() override {} in ~OptionValueSInt64()
H A DOptionValue.h243 OptionValueSInt64 *GetAsSInt64();
245 const OptionValueSInt64 *GetAsSInt64() const;
H A DOptionValueProperties.h160 OptionValueSInt64 *
/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueSInt64.cpp18 void OptionValueSInt64::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()
34 Status OptionValueSInt64::SetValueFromString(llvm::StringRef value_ref, in SetValueFromString()
75 lldb::OptionValueSP OptionValueSInt64::DeepCopy() const { in DeepCopy()
76 return OptionValueSP(new OptionValueSInt64(*this)); in DeepCopy()
H A DOptionValue.cpp29 return static_cast<OptionValueSInt64 *>(this)->GetCurrentValue(); in GetUInt64Value()
228 OptionValueSInt64 *OptionValue::GetAsSInt64() { in GetAsSInt64()
230 return static_cast<OptionValueSInt64 *>(this); in GetAsSInt64()
234 const OptionValueSInt64 *OptionValue::GetAsSInt64() const { in GetAsSInt64()
236 return static_cast<const OptionValueSInt64 *>(this); in GetAsSInt64()
395 const OptionValueSInt64 *option_value = GetAsSInt64(); in GetSInt64Value()
402 OptionValueSInt64 *option_value = GetAsSInt64(); in SetSInt64Value()
532 value_sp.reset(new OptionValueSInt64()); in CreateValueFromCStringForTypeMask()
H A DProperty.cpp172 m_value_sp.reset(new OptionValueSInt64( in Property()
H A DOptionValueProperties.cpp436 OptionValueSInt64 *OptionValueProperties::GetPropertyAtIndexAsOptionValueSInt64( in GetPropertyAtIndexAsOptionValueSInt64()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h168 class OptionValueSInt64; variable
401 typedef std::shared_ptr<lldb_private::OptionValueSInt64> OptionValueSInt64SP;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDebugger.cpp803 OptionValueSInt64 *term_width = in Debugger()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile286 SRCS+= Interpreter/OptionValueSInt64.cpp