Home
last modified time | relevance | path

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

/external/llvm-project/lldb/include/lldb/Interpreter/
DOptionValueSInt64.h17 class OptionValueSInt64 : public OptionValue {
19 OptionValueSInt64() in OptionValueSInt64() function
23 OptionValueSInt64(int64_t value) in OptionValueSInt64() function
27 OptionValueSInt64(int64_t current_value, int64_t default_value) in OptionValueSInt64() function
32 OptionValueSInt64(const OptionValueSInt64 &rhs) in OptionValueSInt64() function
37 ~OptionValueSInt64() override {} in ~OptionValueSInt64()
DOptionValue.h232 OptionValueSInt64 *GetAsSInt64();
234 const OptionValueSInt64 *GetAsSInt64() const;
DOptionValueProperties.h146 OptionValueSInt64 *
/external/llvm-project/lldb/source/Interpreter/
DOptionValueSInt64.cpp17 void OptionValueSInt64::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()
33 Status OptionValueSInt64::SetValueFromString(llvm::StringRef value_ref, in SetValueFromString()
74 lldb::OptionValueSP OptionValueSInt64::DeepCopy() const { in DeepCopy()
75 return OptionValueSP(new OptionValueSInt64(*this)); in DeepCopy()
DOptionValue.cpp27 return static_cast<OptionValueSInt64 *>(this)->GetCurrentValue(); in GetUInt64Value()
226 OptionValueSInt64 *OptionValue::GetAsSInt64() { in GetAsSInt64()
228 return static_cast<OptionValueSInt64 *>(this); in GetAsSInt64()
232 const OptionValueSInt64 *OptionValue::GetAsSInt64() const { in GetAsSInt64()
234 return static_cast<const OptionValueSInt64 *>(this); in GetAsSInt64()
393 const OptionValueSInt64 *option_value = GetAsSInt64(); in GetSInt64Value()
400 OptionValueSInt64 *option_value = GetAsSInt64(); in SetSInt64Value()
532 value_sp = std::make_shared<OptionValueSInt64>(); in CreateValueFromCStringForTypeMask()
DCMakeLists.txt45 OptionValueSInt64.cpp
DProperty.cpp184 m_value_sp = std::make_shared<OptionValueSInt64>( in Property()
DOptionValueProperties.cpp402 OptionValueSInt64 *OptionValueProperties::GetPropertyAtIndexAsOptionValueSInt64( in GetPropertyAtIndexAsOptionValueSInt64()
/external/llvm-project/lldb/include/lldb/
Dlldb-forward.h148 class OptionValueSInt64; variable
371 typedef std::shared_ptr<lldb_private::OptionValueSInt64> OptionValueSInt64SP;
/external/llvm-project/lldb/source/Core/
DDebugger.cpp714 OptionValueSInt64 *term_width = in Debugger()