Home
last modified time | relevance | path

Searched refs:size_mode (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
DLibCxx.cpp594 ValueObjectSP size_mode(D->GetChildAtIndexPath({1, 1, 0})); in ExtractLibcxxStringInfo() local
595 if (!size_mode) in ExtractLibcxxStringInfo()
598 if (size_mode->GetName() != g_size_name) { in ExtractLibcxxStringInfo()
600 size_mode = D->GetChildAtIndexPath({1, 1, 1}); in ExtractLibcxxStringInfo()
601 if (!size_mode) in ExtractLibcxxStringInfo()
605 size_mode_value = (size_mode->GetValueAsUnsigned(0)); in ExtractLibcxxStringInfo()
608 ValueObjectSP size_mode(D->GetChildAtIndexPath({1, 0, 0})); in ExtractLibcxxStringInfo() local
609 if (!size_mode) in ExtractLibcxxStringInfo()
612 size_mode_value = (size_mode->GetValueAsUnsigned(0)); in ExtractLibcxxStringInfo()
/external/llvm-project/lldb/examples/synthetic/
Dlibcxx.py52 size_mode = D20.GetChildAtIndex(0).GetValueAsUnsigned(0)
53 if is_short_string(size_mode):
54 size = extract_short_size(size_mode)