OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:valobj_type
(Results
1 - 4
of
4
) sorted by null
/external/lldb/examples/summaries/cocoa/
CFBag.py
101
valobj_type
= valobj.GetType()
102
if
valobj_type
.IsValid() and
valobj_type
.IsPointerType():
103
valobj_type
=
valobj_type
.GetPointeeType()
104
if
valobj_type
.IsValid():
105
actual_name =
valobj_type
.GetName()
CFBinaryHeap.py
98
valobj_type
= valobj.GetType()
99
if
valobj_type
.IsValid() and
valobj_type
.IsPointerType():
100
valobj_type
=
valobj_type
.GetPointeeType()
101
if
valobj_type
.IsValid():
102
actual_name =
valobj_type
.GetName()
CFBitVector.py
141
valobj_type
= valobj.GetType()
142
if
valobj_type
.IsValid() and
valobj_type
.IsPointerType():
143
valobj_type
=
valobj_type
.GetPointeeType()
144
if
valobj_type
.IsValid():
145
actual_name =
valobj_type
.GetName()
/external/lldb/source/DataFormatters/
FormatManager.cpp
343
ConstString
valobj_type
(GetTypeForCache(valobj, use_dynamic));
344
if (
valobj_type
)
347
log->Printf("\n\n[FormatManager::GetSummaryFormat] Looking into cache for type %s",
valobj_type
.AsCString("<invalid>"));
348
if (m_format_cache.GetSummary(
valobj_type
,retval))
362
if (
valobj_type
)
365
log->Printf("[FormatManager::GetSummaryFormat] Caching %p for type %s",retval.get(),
valobj_type
.AsCString("<invalid>"));
366
m_format_cache.SetSummary(
valobj_type
,retval);
380
ConstString
valobj_type
(GetTypeForCache(valobj, use_dynamic));
381
if (
valobj_type
)
384
log->Printf("\n\n[FormatManager::GetSyntheticChildren] Looking into cache for type %s",
valobj_type
.AsCString("<invalid>"))
[
all
...]
Completed in 83 milliseconds