/external/llvm-project/lldb/test/API/lang/objc/foundation/ |
D | TestObjectDescriptionAPI.py | 60 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/ |
D | CPPLanguageRuntime.h | 62 bool GetObjectDescription(Stream &str, ValueObject &object) override; 64 bool GetObjectDescription(Stream &str, Value &value,
|
D | CPPLanguageRuntime.cpp | 47 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/ |
D | AppleObjCRuntime.h | 47 bool GetObjectDescription(Stream &str, Value &value, 50 bool GetObjectDescription(Stream &str, ValueObject &object) override;
|
D | AppleObjCRuntime.cpp | 69 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/ |
D | LanguageRuntime.h | 69 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/ |
D | TestGlobalObjects.py | 56 self.assertEquals(dyn_value.GetObjectDescription(), "Some NSString")
|
/external/llvm-project/lldb/test/API/python_api/default-constructor/ |
D | sb_value.py | 21 obj.GetObjectDescription()
|
/external/llvm-project/lldb/bindings/interface/ |
D | SBValue.i | 130 GetObjectDescription (); 504 …description = property(GetObjectDescription, None, doc='''A read only property that returns the la…
|
/external/llvm-project/lldb/include/lldb/API/ |
D | SBValue.h | 76 const char *GetObjectDescription();
|
/external/llvm-project/lldb/source/DataFormatters/ |
D | ValueObjectPrinter.cpp | 146 const char *str = m_valobj->GetObjectDescription(); in GetDescriptionForDisplay() 452 object_desc = m_valobj->GetObjectDescription(); in PrintObjectDescriptionIfNeeded()
|
/external/llvm-project/lldb/examples/python/ |
D | sbvalue.py | 68 return self.sbvalue.GetObjectDescription()
|
/external/llvm-project/lldb/examples/summaries/cocoa/ |
D | CFString.py | 131 "content", "(char*)\"" + self.valobj.GetObjectDescription() + "\"")
|
/external/llvm-project/lldb/source/API/ |
D | SBValue.cpp | 381 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/ |
D | ValueObject.h | 510 const char *GetObjectDescription();
|
/external/llvm-project/lldb/source/Core/ |
D | ValueObject.cpp | 1049 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/ |
D | heap.py | 798 desc = dynamic_value.GetObjectDescription()
|