Home
last modified time | relevance | path

Searched refs:OptionValueUInt64 (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionValueUInt64.cpp19 lldb::OptionValueSP OptionValueUInt64::Create(llvm::StringRef value_str, in Create()
21 lldb::OptionValueSP value_sp(new OptionValueUInt64()); in Create()
28 void OptionValueUInt64::DumpValue(const ExecutionContext *exe_ctx, Stream &strm, in DumpValue()
39 Status OptionValueUInt64::SetValueFromString(llvm::StringRef value_ref, in SetValueFromString()
74 lldb::OptionValueSP OptionValueUInt64::DeepCopy() const { in DeepCopy()
75 return OptionValueSP(new OptionValueUInt64(*this)); in DeepCopy()
H A DOptionValue.cpp31 return static_cast<OptionValueUInt64 *>(this)->GetCurrentValue(); in GetUInt64Value()
252 OptionValueUInt64 *OptionValue::GetAsUInt64() { in GetAsUInt64()
254 return static_cast<OptionValueUInt64 *>(this); in GetAsUInt64()
258 const OptionValueUInt64 *OptionValue::GetAsUInt64() const { in GetAsUInt64()
260 return static_cast<const OptionValueUInt64 *>(this); in GetAsUInt64()
427 const OptionValueUInt64 *option_value = GetAsUInt64(); in GetUInt64Value()
434 OptionValueUInt64 *option_value = GetAsUInt64(); in SetUInt64Value()
538 value_sp.reset(new OptionValueUInt64()); in CreateValueFromCStringForTypeMask()
H A DProperty.cpp183 m_value_sp.reset(new OptionValueUInt64( in Property()
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/
H A DOptionGroupFormat.h54 OptionValueUInt64 &GetByteSizeValue() { return m_byte_size; } in GetByteSizeValue()
56 const OptionValueUInt64 &GetByteSizeValue() const { return m_byte_size; } in GetByteSizeValue()
58 OptionValueUInt64 &GetCountValue() { return m_count; } in GetCountValue()
60 const OptionValueUInt64 &GetCountValue() const { return m_count; } in GetCountValue()
75 OptionValueUInt64 m_byte_size;
76 OptionValueUInt64 m_count;
H A DOptionValueUInt64.h18 class OptionValueUInt64 : public OptionValue {
20 OptionValueUInt64() : OptionValue(), m_current_value(0), m_default_value(0) {} in OptionValueUInt64() function
22 OptionValueUInt64(uint64_t value) in OptionValueUInt64() function
25 OptionValueUInt64(uint64_t current_value, uint64_t default_value) in OptionValueUInt64() function
29 ~OptionValueUInt64() override {} in ~OptionValueUInt64()
H A DOptionGroupUInt64.h41 OptionValueUInt64 &GetOptionValue() { return m_value; } in GetOptionValue()
43 const OptionValueUInt64 &GetOptionValue() const { return m_value; } in GetOptionValue()
46 OptionValueUInt64 m_value;
H A DOptionValue.h251 OptionValueUInt64 *GetAsUInt64();
253 const OptionValueUInt64 *GetAsUInt64() const;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectMemory.cpp122 OptionValueUInt64 &byte_size_value = format_options.GetByteSizeValue(); in FinalizeSettings()
123 OptionValueUInt64 &count_value = format_options.GetCountValue(); in FinalizeSettings()
283 OptionValueUInt64 m_num_per_line;
287 OptionValueUInt64 m_offset;
948 OptionValueUInt64 m_count;
949 OptionValueUInt64 m_offset;
1344 OptionValueUInt64 &byte_size_value = m_format_options.GetByteSizeValue(); in DoExecute()
H A DCommandObjectRegister.cpp262 OptionValueSP value_sp(OptionValueUInt64::Create(option_value, error)); in SetOptionValue()
H A DCommandObjectCommands.cpp118 OptionValueUInt64 m_start_idx;
119 OptionValueUInt64 m_stop_idx;
120 OptionValueUInt64 m_count;
H A DCommandObjectBreakpoint.cpp1805 OptionValueUInt64 m_breakpoint;
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h170 class OptionValueUInt64; variable
403 typedef std::shared_ptr<lldb_private::OptionValueUInt64> OptionValueUInt64SP;
/freebsd-12.1/contrib/llvm/tools/lldb/source/Core/
H A DDisassembler.cpp807 data_value_sp = std::make_shared<OptionValueUInt64>(0, 0); in ReadArray()
902 value_sp = std::make_shared<OptionValueUInt64>(0, 0); in ReadDictionary()
/freebsd-12.1/lib/clang/liblldb/
H A DMakefile288 SRCS+= Interpreter/OptionValueUInt64.cpp