HomeSort by relevance Sort by last modified time
    Searched refs:SBValue (Results 1 - 25 of 45) sorted by null

1 2

  /external/lldb/include/lldb/API/
SBFrame.h 99 lldb::SBValue
102 lldb::SBValue
105 lldb::SBValue
108 lldb::SBValue
162 lldb::SBValue
167 lldb::SBValue
170 lldb::SBValue
178 lldb::SBValue
184 lldb::SBValue
195 lldb::SBValue
    [all...]
SBValue.h 1 //===-- SBValue.h -----------------------------------------------*- C++ -*-===//
22 class SBValue
27 SBValue ();
29 SBValue (const lldb::SBValue &rhs);
31 lldb::SBValue &
32 operator =(const lldb::SBValue &rhs);
34 ~SBValue ();
93 lldb::SBValue
96 lldb::SBValue
    [all...]
SBValueList.h 36 Append (const lldb::SBValue &val_obj);
44 lldb::SBValue
47 lldb::SBValue
SBDefines.h 78 class SBValue;
SBThread.h 82 SBValue
124 ReturnFromFrame (SBFrame &frame, SBValue &return_value);
204 friend class SBValue;
SBDeclaration.h 67 friend class SBValue;
SBError.h 78 friend class SBValue;
SBExpressionOptions.h 79 friend class SBValue;
SBStream.h 90 friend class SBValue;
SBTypeFilter.h 72 friend class SBValue;
SBTypeFormat.h 64 friend class SBValue;
SBTypeSynthetic.h 80 friend class SBValue;
SBWatchpoint.h 95 friend class SBValue;
SBTypeSummary.h 90 friend class SBValue;
  /external/lldb/source/API/
SBValue.cpp 1 //===-- SBValue.cpp ---------------------------------------------*- C++ -*-===//
12 #include "lldb/API/SBValue.h"
130 log->Printf ("SBValue(%p)::GetSP() => error: process is running", value_sp.get());
244 SBValue::SBValue () :
249 SBValue::SBValue (const lldb::ValueObjectSP &value_sp)
254 SBValue::SBValue(const SBValue &rhs
    [all...]
SBValueList.cpp 12 #include "lldb/API/SBValue.h"
51 Append (const lldb::SBValue& sb_value)
63 lldb::SBValue
67 return lldb::SBValue();
71 lldb::SBValue
79 return lldb::SBValue();
83 std::vector<lldb::SBValue> m_values;
177 SBValueList::Append (const SBValue &val_obj)
189 m_opaque_ap->Append (SBValue(val_obj_sp));
204 SBValue
    [all...]
SBFrame.cpp 41 #include "lldb/API/SBValue.h"
651 lldb::SBValue
654 SBValue sb_value;
666 lldb::SBValue
669 SBValue sb_value;
716 SBValue
719 SBValue value;
732 SBValue
737 SBValue sb_value;
799 log->Printf ("SBFrame(%p)::FindVariable (name=\"%s\") => SBValue(%p)",
    [all...]
  /external/lldb/tools/lldb-perf/darwin/formatters/
formatters.cpp 29 m_dump_std_vector_measurement = CreateTimeMeasurement([] (SBValue value) -> void {
32 m_dump_std_list_measurement = CreateTimeMeasurement([] (SBValue value) -> void {
35 m_dump_std_map_measurement = CreateTimeMeasurement([] (SBValue value) -> void {
43 m_dump_nsstring_measurement = CreateTimeMeasurement([] (SBValue value) -> void {
47 m_dump_nsarray_measurement = CreateTimeMeasurement([] (SBValue value) -> void {
51 m_dump_nsdictionary_measurement = CreateTimeMeasurement([] (SBValue value) -> void {
55 m_dump_nsset_measurement = CreateTimeMeasurement([] (SBValue value) -> void {
59 m_dump_nsbundle_measurement = CreateTimeMeasurement([] (SBValue value) -> void {
63 m_dump_nsdate_measurement = CreateTimeMeasurement([] (SBValue value) -> void {
219 TimeMeasurement<std::function<void(SBValue)>> m_dump_std_vector_measurement
    [all...]
  /external/lldb/scripts/Python/interface/
SBValue.i 1 //===-- SWIG Interface for SBValue ------------------------------*- C++ -*-===//
15 SBValue supports iteration through its child, which in turn is represented
16 as an SBValue. For example, we can get the general purpose registers of a
17 frame as an SBValue, and iterate through all the registers,
55 SBValue instance which interprets the value object as representing the head of a
57 ) SBValue;
58 class SBValue
61 SBValue ();
63 SBValue (const SBValue &rhs)
    [all...]
SBFrame.i 134 lldb::SBValue
137 lldb::SBValue
140 lldb::SBValue
143 lldb::SBValue
208 lldb::SBValue
211 lldb::SBValue
214 lldb::SBValue
218 /// Get a lldb.SBValue for a variable path.
233 /// Unlike EvaluateExpression() which returns lldb.SBValue objects
239 lldb::SBValue
    [all...]
SBValueList.i 16 SBValueList supports SBValue iteration. For example (from test/lldbutil.py),
31 '''Returns the general purpose registers of the frame as an SBValue.
33 The returned SBValue object is iterable. An example:
44 '''Returns the floating point registers of the frame as an SBValue.
46 The returned SBValue object is iterable. An example:
57 '''Returns the exception state registers of the frame as an SBValue.
59 The returned SBValue object is iterable. An example:
86 Append (const lldb::SBValue &val_obj);
94 lldb::SBValue
97 lldb::SBValue
    [all...]
SBExpressionOptions.i 19 friend class SBValue;
  /external/lldb/test/python_api/default-constructor/
sb_valuelist.py 9 obj.Append(lldb.SBValue())
  /external/lldb/tools/lldb-perf/lib/
Xcode.h 14 #include "lldb/API/SBValue.h"
33 FetchVariable (SBValue value, uint32_t expand = 0, bool verbose = false);
Xcode.cpp 17 Xcode::FetchVariable (SBValue value, uint32_t expand, bool verbose)
36 SBValue child(value.GetChildAtIndex(i, lldb::eDynamicCanRunTarget, true));
67 SBValue value(values.GetValueAtIndex(i));
114 SBValue value (frame.EvaluateExpression (expression, eDynamicCanRunTarget));

Completed in 93 milliseconds

1 2