Searched refs:OptionValueUInt64 (Results 1 – 14 of 14) sorted by relevance
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Interpreter/ |
| H A D | OptionValueUInt64.cpp | 19 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 D | OptionValue.cpp | 31 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 D | Property.cpp | 183 m_value_sp.reset(new OptionValueUInt64( in Property()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Interpreter/ |
| H A D | OptionGroupFormat.h | 54 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 D | OptionValueUInt64.h | 18 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 D | OptionGroupUInt64.h | 41 OptionValueUInt64 &GetOptionValue() { return m_value; } in GetOptionValue() 43 const OptionValueUInt64 &GetOptionValue() const { return m_value; } in GetOptionValue() 46 OptionValueUInt64 m_value;
|
| H A D | OptionValue.h | 251 OptionValueUInt64 *GetAsUInt64(); 253 const OptionValueUInt64 *GetAsUInt64() const;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Commands/ |
| H A D | CommandObjectMemory.cpp | 122 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 D | CommandObjectRegister.cpp | 262 OptionValueSP value_sp(OptionValueUInt64::Create(option_value, error)); in SetOptionValue()
|
| H A D | CommandObjectCommands.cpp | 118 OptionValueUInt64 m_start_idx; 119 OptionValueUInt64 m_stop_idx; 120 OptionValueUInt64 m_count;
|
| H A D | CommandObjectBreakpoint.cpp | 1805 OptionValueUInt64 m_breakpoint;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/ |
| H A D | lldb-forward.h | 170 class OptionValueUInt64; variable 403 typedef std::shared_ptr<lldb_private::OptionValueUInt64> OptionValueUInt64SP;
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | Disassembler.cpp | 807 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 D | Makefile | 288 SRCS+= Interpreter/OptionValueUInt64.cpp
|