Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/lang/objc/foundation/
DTestObjectDescriptionAPI.py60 print("object description:", v.GetObjectDescription())
62 self.assertTrue(v.GetObjectDescription() ==
71 print("object description:", v.GetObjectDescription())
73 self.assertTrue(v.GetObjectDescription() ==
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/
DCPPLanguageRuntime.h62 bool GetObjectDescription(Stream &str, ValueObject &object) override;
64 bool GetObjectDescription(Stream &str, Value &value,
DCPPLanguageRuntime.cpp47 bool CPPLanguageRuntime::GetObjectDescription(Stream &str, in GetObjectDescription() function in CPPLanguageRuntime
53 bool CPPLanguageRuntime::GetObjectDescription( in GetObjectDescription() function in CPPLanguageRuntime
/external/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
DAppleObjCRuntime.h47 bool GetObjectDescription(Stream &str, Value &value,
50 bool GetObjectDescription(Stream &str, ValueObject &object) override;
DAppleObjCRuntime.cpp69 bool AppleObjCRuntime::GetObjectDescription(Stream &str, ValueObject &valobj) { in GetObjectDescription() function in AppleObjCRuntime
95 return GetObjectDescription(str, val, exe_ctx.GetBestExecutionContextScope()); in GetObjectDescription()
97 bool AppleObjCRuntime::GetObjectDescription(Stream &strm, Value &value, in GetObjectDescription() function in AppleObjCRuntime
/external/llvm-project/lldb/include/lldb/Target/
DLanguageRuntime.h69 virtual bool GetObjectDescription(Stream &str, ValueObject &object) = 0;
71 virtual bool GetObjectDescription(Stream &str, Value &value,
/external/llvm-project/lldb/test/API/lang/objc/global_ptrs/
DTestGlobalObjects.py56 self.assertEquals(dyn_value.GetObjectDescription(), "Some NSString")
/external/llvm-project/lldb/test/API/python_api/default-constructor/
Dsb_value.py21 obj.GetObjectDescription()
/external/llvm-project/lldb/bindings/interface/
DSBValue.i130 GetObjectDescription ();
504 …description = property(GetObjectDescription, None, doc='''A read only property that returns the la…
/external/llvm-project/lldb/include/lldb/API/
DSBValue.h76 const char *GetObjectDescription();
/external/llvm-project/lldb/source/DataFormatters/
DValueObjectPrinter.cpp146 const char *str = m_valobj->GetObjectDescription(); in GetDescriptionForDisplay()
452 object_desc = m_valobj->GetObjectDescription(); in PrintObjectDescriptionIfNeeded()
/external/llvm-project/lldb/examples/python/
Dsbvalue.py68 return self.sbvalue.GetObjectDescription()
/external/llvm-project/lldb/examples/summaries/cocoa/
DCFString.py131 "content", "(char*)\"" + self.valobj.GetObjectDescription() + "\"")
/external/llvm-project/lldb/source/API/
DSBValue.cpp381 const char *SBValue::GetObjectDescription() { in GetObjectDescription() function in SBValue
382 LLDB_RECORD_METHOD_NO_ARGS(const char *, SBValue, GetObjectDescription); in GetObjectDescription()
388 cstr = value_sp->GetObjectDescription(); in GetObjectDescription()
1568 LLDB_REGISTER_METHOD(const char *, SBValue, GetObjectDescription, ()); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/Core/
DValueObject.h510 const char *GetObjectDescription();
/external/llvm-project/lldb/source/Core/
DValueObject.cpp1049 const char *ValueObject::GetObjectDescription() { in GetObjectDescription() function in ValueObject
1066 if (runtime->GetObjectDescription(s, *this)) { in GetObjectDescription()
1375 str = GetObjectDescription(); in DumpPrintableRepresentation()
/external/llvm-project/lldb/examples/darwin/heap_find/
Dheap.py798 desc = dynamic_value.GetObjectDescription()