HomeSort by relevance Sort by last modified time
    Searched refs:GetObjectDescription (Results 1 - 16 of 16) sorted by null

  /external/lldb/test/lang/objc/foundation/
TestObjectDescriptionAPI.py 2 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/
CPPLanguageRuntime.h 128 GetObjectDescription (Stream &str, ValueObject &object);
131 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope);
LanguageRuntime.h 42 GetObjectDescription (Stream &str, ValueObject &object) = 0;
45 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope) = 0;
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCRuntime.h 35 GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope);
38 GetObjectDescription (Stream &str, ValueObject &object);
AppleObjCRuntime.cpp 44 AppleObjCRuntime::GetObjectDescription (Stream &str, ValueObject &valobj)
60 return GetObjectDescription(str, val, exe_ctx.GetBestExecutionContextScope());
64 AppleObjCRuntime::GetObjectDescription (Stream &strm, Value &value, ExecutionContextScope *exe_scope)
  /external/lldb/test/python_api/default-constructor/
sb_value.py 21 obj.GetObjectDescription()
  /external/lldb/scripts/Python/interface/
SBValue.i 122 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/
CPPLanguageRuntime.cpp 166 CPPLanguageRuntime::GetObjectDescription (Stream &str, ValueObject &object)
173 CPPLanguageRuntime::GetObjectDescription (Stream &str, Value &value, ExecutionContextScope *exe_scope)
  /external/lldb/include/lldb/API/
SBValue.h 91 GetObjectDescription ();
  /external/lldb/tools/lldb-perf/lib/
Xcode.cpp 118 auto descr = value.GetObjectDescription();
  /external/lldb/examples/python/
sbvalue.py 64 return self.sbvalue.GetObjectDescription ()
  /external/lldb/examples/summaries/cocoa/
CFString.py 114 "(char*)\"" + self.valobj.GetObjectDescription() + "\"");
  /external/lldb/include/lldb/Core/
ValueObject.h 801 GetObjectDescription ();
    [all...]
  /external/lldb/source/API/
SBValue.cpp 446 SBValue::GetObjectDescription ()
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());
    [all...]
  /external/lldb/examples/darwin/heap_find/
heap.py 555 desc = dynamic_value.GetObjectDescription()
    [all...]
  /external/lldb/source/Core/
ValueObject.cpp     [all...]

Completed in 8563 milliseconds