Home
last modified time | relevance | path

Searched refs:GetObjectDescription (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
H A DCPPLanguageRuntime.h62 bool GetObjectDescription(Stream &str, ValueObject &object) override;
64 bool GetObjectDescription(Stream &str, Value &value,
H A DCPPLanguageRuntime.cpp47 bool CPPLanguageRuntime::GetObjectDescription(Stream &str, in GetObjectDescription() function in CPPLanguageRuntime
53 bool CPPLanguageRuntime::GetObjectDescription( in GetObjectDescription() function in CPPLanguageRuntime
/openbsd-src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.h47 bool GetObjectDescription(Stream &str, Value &value,
50 bool GetObjectDescription(Stream &str, ValueObject &object) override;
H A DAppleObjCRuntime.cpp70 bool AppleObjCRuntime::GetObjectDescription(Stream &str, ValueObject &valobj) { in GetObjectDescription() function in AppleObjCRuntime
96 return GetObjectDescription(str, val, exe_ctx.GetBestExecutionContextScope()); in GetObjectDescription()
98 bool AppleObjCRuntime::GetObjectDescription(Stream &strm, Value &value, in GetObjectDescription() function in AppleObjCRuntime
/openbsd-src/gnu/llvm/lldb/include/lldb/Target/
H A DLanguageRuntime.h70 virtual bool GetObjectDescription(Stream &str, ValueObject &object) = 0;
72 virtual bool GetObjectDescription(Stream &str, Value &value,
/openbsd-src/gnu/llvm/lldb/bindings/interface/
H A DSBValue.i130 GetObjectDescription ();
503 …description = property(GetObjectDescription, None, doc='''A read only property that returns the la…
/openbsd-src/gnu/llvm/lldb/include/lldb/API/
H A DSBValue.h76 const char *GetObjectDescription();
/openbsd-src/gnu/llvm/lldb/source/DataFormatters/
H A DValueObjectPrinter.cpp146 const char *str = m_valobj->GetObjectDescription(); in GetDescriptionForDisplay()
452 object_desc = m_valobj->GetObjectDescription(); in PrintObjectDescriptionIfNeeded()
/openbsd-src/gnu/llvm/lldb/examples/python/
H A Dsbvalue.py68 return self.sbvalue.GetObjectDescription()
/openbsd-src/gnu/llvm/lldb/examples/summaries/cocoa/
H A DCFString.py131 "content", "(char*)\"" + self.valobj.GetObjectDescription() + "\"")
/openbsd-src/gnu/llvm/lldb/source/API/
H A DSBValue.cpp378 const char *SBValue::GetObjectDescription() { in GetObjectDescription() function in SBValue
385 cstr = value_sp->GetObjectDescription(); in GetObjectDescription()
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DValueObject.cpp1008 const char *ValueObject::GetObjectDescription() { in GetObjectDescription() function in ValueObject
1025 if (runtime->GetObjectDescription(s, *this)) { in GetObjectDescription()
1335 str = GetObjectDescription(); in DumpPrintableRepresentation()
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DValueObject.h526 const char *GetObjectDescription();
/openbsd-src/gnu/llvm/lldb/examples/darwin/heap_find/
H A Dheap.py797 desc = dynamic_value.GetObjectDescription()