HomeSort by relevance Sort by last modified time
    Searched refs:OptionValueSInt64 (Results 1 - 10 of 10) sorted by null

  /external/lldb/source/Interpreter/
OptionValueSInt64.cpp 1 //===-- OptionValueSInt64.cpp -----------------------------------*- C++ -*-===//
10 #include "lldb/Interpreter/OptionValueSInt64.h"
23 OptionValueSInt64::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)
39 OptionValueSInt64::SetValueFromCString (const char *value_cstr, VarSetOperationType op)
86 OptionValueSInt64::DeepCopy () const
88 return OptionValueSP(new OptionValueSInt64(*this));
OptionValue.cpp 36 case OptionValue::eTypeSInt64: return static_cast<OptionValueSInt64 *>(this)->GetCurrentValue();
258 OptionValueSInt64 *
262 return static_cast<OptionValueSInt64 *>(this);
266 const OptionValueSInt64 *
270 return static_cast<const OptionValueSInt64 *>(this);
432 const OptionValueSInt64 *option_value = GetAsSInt64 ();
441 OptionValueSInt64 *option_value = GetAsSInt64 ();
552 case 1u << eTypeSInt64: value_sp.reset(new OptionValueSInt64()); break;
Android.mk 46 OptionValueSInt64.cpp \
Property.cpp 136 m_value_sp.reset (new OptionValueSInt64(definition.default_cstr_value ? Args::StringToSInt64 (definition.default_cstr_value) : definition.default_uint_value));
OptionValueProperties.cpp 468 OptionValueSInt64 *
  /external/lldb/include/lldb/Interpreter/
OptionValueSInt64.h 1 //===-- OptionValueSInt64.h --------------------------------------*- C++ -*-===//
21 class OptionValueSInt64 : public OptionValue
24 OptionValueSInt64 () :
33 OptionValueSInt64 (int64_t value) :
42 OptionValueSInt64 (int64_t current_value,
52 OptionValueSInt64 (const OptionValueSInt64 &rhs) :
62 ~OptionValueSInt64()
OptionValue.h 276 OptionValueSInt64 *
279 const OptionValueSInt64 *
OptionValueProperties.h 197 OptionValueSInt64 *
  /external/lldb/include/lldb/
lldb-forward.h 139 class OptionValueSInt64;
314 typedef std::shared_ptr<lldb_private::OptionValueSInt64> OptionValueSInt64SP;
  /external/lldb/source/Core/
Debugger.cpp 39 #include "lldb/Interpreter/OptionValueSInt64.h"
663 OptionValueSInt64 *term_width = m_collection_sp->GetPropertyAtIndexAsOptionValueSInt64 (NULL, ePropertyTerminalWidth);
    [all...]

Completed in 105 milliseconds