| /llvm-project-15.0.7/lldb/test/API/lang/objc/foundation/ |
| H A D | TestObjectDescriptionAPI.py | 58 print("object description:", v.GetObjectDescription()) 60 self.assertEqual(v.GetObjectDescription(), 69 print("object description:", v.GetObjectDescription()) 71 self.assertEqual(v.GetObjectDescription(),
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ |
| H A D | CPPLanguageRuntime.h | 62 bool GetObjectDescription(Stream &str, ValueObject &object) override; 64 bool GetObjectDescription(Stream &str, Value &value,
|
| H A D | CPPLanguageRuntime.cpp | 47 bool CPPLanguageRuntime::GetObjectDescription(Stream &str, in GetObjectDescription() function in CPPLanguageRuntime 53 bool CPPLanguageRuntime::GetObjectDescription( in GetObjectDescription() function in CPPLanguageRuntime
|
| /llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.h | 47 bool GetObjectDescription(Stream &str, Value &value, 50 bool GetObjectDescription(Stream &str, ValueObject &object) override;
|
| H A D | AppleObjCRuntime.cpp | 70 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
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | LanguageRuntime.h | 69 virtual bool GetObjectDescription(Stream &str, ValueObject &object) = 0; 71 virtual bool GetObjectDescription(Stream &str, Value &value,
|
| /llvm-project-15.0.7/lldb/test/API/lang/objc/global_ptrs/ |
| H A D | TestGlobalObjects.py | 54 self.assertEquals(dyn_value.GetObjectDescription(), "Some NSString")
|
| /llvm-project-15.0.7/lldb/test/API/python_api/default-constructor/ |
| H A D | sb_value.py | 21 obj.GetObjectDescription()
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBValue.i | 130 GetObjectDescription (); 503 …description = property(GetObjectDescription, None, doc='''A read only property that returns the la…
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBValue.h | 76 const char *GetObjectDescription();
|
| /llvm-project-15.0.7/lldb/source/DataFormatters/ |
| H A D | ValueObjectPrinter.cpp | 146 const char *str = m_valobj->GetObjectDescription(); in GetDescriptionForDisplay() 452 object_desc = m_valobj->GetObjectDescription(); in PrintObjectDescriptionIfNeeded()
|
| /llvm-project-15.0.7/lldb/examples/python/ |
| H A D | sbvalue.py | 68 return self.sbvalue.GetObjectDescription()
|
| /llvm-project-15.0.7/lldb/examples/summaries/cocoa/ |
| H A D | CFString.py | 131 "content", "(char*)\"" + self.valobj.GetObjectDescription() + "\"")
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBValue.cpp | 378 const char *SBValue::GetObjectDescription() { in GetObjectDescription() function in SBValue 385 cstr = value_sp->GetObjectDescription(); in GetObjectDescription()
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | ValueObject.cpp | 999 const char *ValueObject::GetObjectDescription() { in GetObjectDescription() function in ValueObject 1016 if (runtime->GetObjectDescription(s, *this)) { in GetObjectDescription() 1326 str = GetObjectDescription(); in DumpPrintableRepresentation()
|
| /llvm-project-15.0.7/lldb/include/lldb/Core/ |
| H A D | ValueObject.h | 526 const char *GetObjectDescription();
|
| /llvm-project-15.0.7/lldb/examples/darwin/heap_find/ |
| H A D | heap.py | 798 desc = dynamic_value.GetObjectDescription()
|