Home
last modified time | relevance | path

Searched refs:GetNumChildrenIgnoringErrors (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DLibStdcppTuple.cpp68 size_t child_count = current_child->GetNumChildrenIgnoringErrors(); in Update()
H A DGenericOptional.cpp22 valobj.GetNumChildrenIgnoringErrors() == 0 ? "false" : "true"); in GenericOptionalSummaryProvider()
H A DLibCxxMap.cpp344 switch (potential_child_sp->GetNumChildrenIgnoringErrors()) { in GetChildAtIndex()
455 if (key_value_sp->GetNumChildrenIgnoringErrors() == 1) { in Update()
H A DCoroutines.cpp27 if (valobj_sp->GetNumChildrenIgnoringErrors() != 1) in GetCoroFramePtrFromHandle()
H A DLibCxxUnorderedMap.cpp347 if (potential_child_sp->GetNumChildrenIgnoringErrors() == 1) in Update()
H A DLibCxx.cpp66 if (pair.GetNumChildrenIgnoringErrors() > 1) { in GetSecondValueOfLibCXXCompressedPair()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObject.h508 uint32_t GetNumChildrenIgnoringErrors(uint32_t max = UINT32_MAX);
509 bool HasChildren() { return GetNumChildrenIgnoringErrors() > 0; } in HasChildren()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObject.cpp380 if (idx < GetNumChildrenIgnoringErrors()) { in GetChildAtIndex()
464 uint32_t ValueObject::GetNumChildrenIgnoringErrors(uint32_t max) { in GetNumChildrenIgnoringErrors() function in ValueObject
480 has_children = GetNumChildrenIgnoringErrors() > 0; in MightHaveChildren()
1371 const size_t count = GetNumChildrenIgnoringErrors(); in DumpPrintableRepresentation()
1410 const size_t count = GetNumChildrenIgnoringErrors(); in DumpPrintableRepresentation()
1496 strm.Printf("%" PRIu64 "", (uint64_t)GetNumChildrenIgnoringErrors()); in DumpPrintableRepresentation()
H A DFormatEntity.cpp971 index_higher = valobj->GetNumChildrenIgnoringErrors() - 1; in DumpValue()
H A DIOHandlerCursesGUI.cpp4522 const uint32_t num_children = valobj->GetNumChildrenIgnoringErrors(); in GetChildren()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionSourceCode.cpp232 uint32_t numChildren = thisValSP->GetNumChildrenIgnoringErrors(); in AddLambdaCaptureDecls()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp862 ->GetNumChildrenIgnoringErrors() /* synthetic does in GetValueForVariableExpressionPath()
934 synthetic->GetNumChildrenIgnoringErrors() /* synthetic in GetValueForVariableExpressionPath()
1392 for (int ci = 0, ce = parent->GetNumChildrenIgnoringErrors(); ci != ce; in GetValueForOffset()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp548 for (size_t idx = 0; idx < reserved_dict->GetNumChildrenIgnoringErrors(); in GetBacktraceThreadFromException()
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.cpp216 size_t count = trace_value_object->GetNumChildrenIgnoringErrors(); in CreateStackTrace()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBValue.cpp987 num_children = value_sp->GetNumChildrenIgnoringErrors(max); in GetNumChildren()