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

  /external/lldb/source/API/
SBTypeFormat.cpp 1 //===-- SBTypeFormat.cpp ------------------------------------------*- C++ -*-===//
12 #include "lldb/API/SBTypeFormat.h"
21 SBTypeFormat::SBTypeFormat() :
26 SBTypeFormat::SBTypeFormat (lldb::Format format,
32 SBTypeFormat::SBTypeFormat (const lldb::SBTypeFormat &rhs) :
37 SBTypeFormat::~SBTypeFormat (
    [all...]
SBTypeCategory.cpp 15 #include "lldb/API/SBTypeFormat.h"
177 SBTypeFormat
181 return SBTypeFormat();
184 return SBTypeFormat();
187 return SBTypeFormat();
189 return SBTypeFormat(DataVisualization::ValueFormats::GetFormat(ConstString(spec.GetName())));
259 SBTypeFormat
263 return SBTypeFormat();
264 return SBTypeFormat(DataVisualization::ValueFormats::GetFormatAtIndex((index)));
296 SBTypeFormat format
    [all...]
Android.mk 53 SBTypeFormat.cpp \
SBDebugger.cpp 31 #include "lldb/API/SBTypeFormat.h"
1204 SBTypeFormat
1210 return SBTypeFormat();
    [all...]
SBValue.cpp 17 #include "lldb/API/SBTypeFormat.h"
578 lldb::SBTypeFormat
581 lldb::SBTypeFormat format;
    [all...]
  /external/lldb/scripts/Python/interface/
SBTypeFormat.i 1 //===-- SWIG Interface for SBTypeFormat----------------------------*- C++ -*-===//
14 ") SBTypeFormat;
16 class SBTypeFormat
20 SBTypeFormat();
22 SBTypeFormat (lldb::Format format, uint32_t options = 0);
24 SBTypeFormat (const lldb::SBTypeFormat &rhs);
26 ~SBTypeFormat ();
32 IsEqualTo (lldb::SBTypeFormat &rhs);
51 operator == (lldb::SBTypeFormat &rhs)
    [all...]
SBTypeCategory.i 69 lldb::SBTypeFormat
81 lldb::SBTypeFormat
92 lldb::SBTypeFormat);
193 if _newclass: formats = property(get_formats_array, None, doc='''A read only property that returns a list() of lldb.SBTypeFormat objects contained in this category''')
SBDebugger.i 358 lldb::SBTypeFormat
SBValue.i 160 lldb::SBTypeFormat
  /external/lldb/include/lldb/API/
SBTypeFormat.h 1 //===-- SBTypeFormat.h --------------------------------------------*- C++ -*-===//
17 class SBTypeFormat
21 SBTypeFormat();
23 SBTypeFormat (lldb::Format format,
26 SBTypeFormat (const lldb::SBTypeFormat &rhs);
28 ~SBTypeFormat ();
49 lldb::SBTypeFormat &
50 operator = (const lldb::SBTypeFormat &rhs);
53 IsEqualTo (lldb::SBTypeFormat &rhs)
    [all...]
SBTypeCategory.h 74 SBTypeFormat
92 SBTypeFormat
107 SBTypeFormat);
SBDefines.h 71 class SBTypeFormat;
SBDebugger.h 292 SBTypeFormat
SBValue.h 130 lldb::SBTypeFormat
  /external/lldb/test/python_api/formatters/
TestFormattersSBAPI.py 70 format = lldb.SBTypeFormat(lldb.eFormatHex)
259 self.assertFalse(category.AddTypeFormat(lldb.SBTypeNameSpecifier("EmptySuchType"), lldb.SBTypeFormat()), "adding a format without value worked")
264 self.assertFalse(category.AddTypeFormat(lldb.SBTypeNameSpecifier(""), lldb.SBTypeFormat(lldb.eFormatHex)), "adding a format for an invalid type worked")

Completed in 165 milliseconds