Searched refs:GetObjectDescription (Results 1 - 15 of 15) sorted by relevance

/external/lldb/test/lang/objc/foundation/
H A DTestObjectDescriptionAPI.py2 Test SBValue.GetObjectDescription() with the value from SBTarget.FindGlobalVariables().
45 """Exercise SBTaget.FindGlobalVariables() followed by SBValue.GetObjectDescription()."""
71 print "object description:", v.GetObjectDescription()
73 self.assertTrue(v.GetObjectDescription() == 'This is a global string')
81 print "object description:", v.GetObjectDescription()
83 self.assertTrue(v.GetObjectDescription() == 'This is a global string')
/external/lldb/include/lldb/Target/
H A DLanguageRuntime.h42 GetObjectDescription (Stream &str, ValueObject &object) = 0;
45 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope) = 0;
H A DCPPLanguageRuntime.h128 GetObjectDescription (Stream &str, ValueObject &object);
131 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope);
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.h35 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope);
38 GetObjectDescription (Stream &str, ValueObject &object);
H A DAppleObjCRuntime.cpp44 AppleObjCRuntime::GetObjectDescription (Stream &str, ValueObject &valobj) function in class:AppleObjCRuntime
60 return GetObjectDescription(str, val, exe_ctx.GetBestExecutionContextScope());
64 AppleObjCRuntime::GetObjectDescription (Stream &strm, Value &value, ExecutionContextScope *exe_scope) function in class:AppleObjCRuntime
/external/lldb/test/python_api/default-constructor/
H A Dsb_value.py21 obj.GetObjectDescription()
/external/lldb/scripts/Python/interface/
H A DSBValue.i122 GetObjectDescription ();
463 __swig_getmethods__["description"] = GetObjectDescription
464 if _newclass: description = property(GetObjectDescription, None, doc='''A read only property that returns the language-specific description of this value as a string''')
/external/lldb/source/Target/
H A DCPPLanguageRuntime.cpp166 CPPLanguageRuntime::GetObjectDescription (Stream &str, ValueObject &object) function in class:CPPLanguageRuntime
173 CPPLanguageRuntime::GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope) function in class:CPPLanguageRuntime
/external/lldb/examples/python/
H A Dsbvalue.py64 return self.sbvalue.GetObjectDescription ()
/external/lldb/include/lldb/API/
H A DSBValue.h91 GetObjectDescription ();
/external/lldb/tools/lldb-perf/lib/
H A DXcode.cpp118 auto descr = value.GetObjectDescription();
/external/lldb/source/API/
H A DSBValue.cpp446 SBValue::GetObjectDescription () function in class:SBValue
454 cstr = value_sp->GetObjectDescription ();
459 log->Printf ("SBValue(%p)::GetObjectDescription() => \"%s\"", value_sp.get(), cstr);
461 log->Printf ("SBValue(%p)::GetObjectDescription() => NULL", value_sp.get());
/external/lldb/examples/darwin/heap_find/
H A Dheap.py555 desc = dynamic_value.GetObjectDescription()
/external/lldb/include/lldb/Core/
H A DValueObject.h801 GetObjectDescription ();
/external/lldb/source/Core/
H A DValueObject.cpp1259 ValueObject::GetObjectDescription () function in class:ValueObject
1292 if (runtime && runtime->GetObjectDescription(s, *this))
1656 cstr = GetObjectDescription();
3488 const char *object_desc = valobj->GetObjectDescription();

Completed in 262 milliseconds