Home
last modified time | relevance | path

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

/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/
DOptionValueSInt64.h21 class OptionValueSInt64 : public OptionValue
24 OptionValueSInt64 () : in OptionValueSInt64() function
33 OptionValueSInt64 (int64_t value) : in OptionValueSInt64() function
42 OptionValueSInt64 (int64_t current_value, in OptionValueSInt64() function
52 OptionValueSInt64 (const OptionValueSInt64 &rhs) : in OptionValueSInt64() function
62 ~OptionValueSInt64() in ~OptionValueSInt64()
DOptionValue.h276 OptionValueSInt64 *
279 const OptionValueSInt64 *
DOptionValueProperties.h197 OptionValueSInt64 *
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Interpreter/
DOptionValueSInt64.cpp23 OptionValueSInt64::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) in DumpValue()
39 OptionValueSInt64::SetValueFromCString (const char *value_cstr, VarSetOperationType op) in SetValueFromCString()
86 OptionValueSInt64::DeepCopy () const in DeepCopy()
88 return OptionValueSP(new OptionValueSInt64(*this)); in DeepCopy()
DOptionValue.cpp36 … case OptionValue::eTypeSInt64: return static_cast<OptionValueSInt64 *>(this)->GetCurrentValue(); in GetUInt64Value()
258 OptionValueSInt64 *
262 return static_cast<OptionValueSInt64 *>(this); in GetAsSInt64()
266 const OptionValueSInt64 *
270 return static_cast<const OptionValueSInt64 *>(this); in GetAsSInt64()
432 const OptionValueSInt64 *option_value = GetAsSInt64 (); in GetSInt64Value()
441 OptionValueSInt64 *option_value = GetAsSInt64 (); in SetSInt64Value()
552 case 1u << eTypeSInt64: value_sp.reset(new OptionValueSInt64()); break; in CreateValueFromCStringForTypeMask()
DProperty.cpp136 …m_value_sp.reset (new OptionValueSInt64(definition.default_cstr_value ? Args::StringToSInt64 (defi… in Property()
DOptionValueProperties.cpp468 OptionValueSInt64 *
/freebsd-10-stable/lib/clang/liblldbInterpreter/
DMakefile38 OptionValueSInt64.cpp \
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/
Dlldb-forward.h145 class OptionValueSInt64; variable
330 typedef std::shared_ptr<lldb_private::OptionValueSInt64> OptionValueSInt64SP;
/freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/
DDebugger.cpp658OptionValueSInt64 *term_width = m_collection_sp->GetPropertyAtIndexAsOptionValueSInt64 (NULL, ePro… in Debugger()