| /openbsd-src/gnu/llvm/lldb/bindings/interface/ |
| H A D | SBValue.i | 322 GetNumChildren (); 332 An integer value capped to the argument max.") GetNumChildren; 334 GetNumChildren (uint32_t max); 458 return int(self.sbvalue.GetNumChildren()) 484 return self.GetNumChildren() 510 …num_children = property(GetNumChildren, None, doc='''A read only property that returns the number …
|
| /openbsd-src/gnu/llvm/llvm/utils/ |
| H A D | lldbDataFormatters.py | 166 num_elements = valobj.GetNumChildren() 177 if valobj.GetNumChildren() == 2: 202 if valobj.GetNumChildren() == 1:
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/API/ |
| H A D | SBValue.h | 275 uint32_t GetNumChildren(); 277 uint32_t GetNumChildren(uint32_t max);
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | ValueObjectMemory.cpp | 131 auto child_count = m_type_sp->GetNumChildren(true); in CalculateNumChildren() 138 m_compiler_type.GetNumChildren(omit_empty_base_classes, &exe_ctx); in CalculateNumChildren()
|
| H A D | ValueObjectRegister.cpp | 121 const size_t num_children = GetNumChildren(); in CreateChildAtIndex() 228 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
|
| H A D | ValueObjectDynamicValue.cpp | 92 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren() 95 return m_parent->GetNumChildren(max); in CalculateNumChildren()
|
| H A D | ValueObjectCast.cpp | 46 auto children_count = GetCompilerType().GetNumChildren( in CalculateNumChildren()
|
| H A D | ValueObjectChild.cpp | 54 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
|
| H A D | ValueObject.cpp | 381 if (idx < GetNumChildren()) { in GetChildAtIndex() 497 size_t ValueObject::GetNumChildren(uint32_t max) { in GetNumChildren() function in ValueObject 521 has_children = GetNumChildren() > 0; in MightHaveChildren() 1225 const size_t count = GetNumChildren(); in DumpPrintableRepresentation() 1264 const size_t count = GetNumChildren(); in DumpPrintableRepresentation() 1343 strm.Printf("%" PRIu64 "", (uint64_t)GetNumChildren()); in DumpPrintableRepresentation() 2367 root->GetSyntheticValue()->GetNumChildren() > index) in GetValueForExpressionPath_Impl()
|
| H A D | ValueObjectConstResult.cpp | 221 auto children_count = GetCompilerType().GetNumChildren(true, &exe_ctx); in CalculateNumChildren()
|
| /openbsd-src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | LibCxxQueue.cpp | 32 return m_container_sp ? m_container_sp->GetNumChildren() : 0; in CalculateNumChildren()
|
| H A D | LibStdcppTuple.cpp | 68 size_t child_count = current_child->GetNumChildren(); in Update()
|
| H A D | GenericOptional.cpp | 22 valobj.GetNumChildren() == 0 ? "false" : "true"); in GenericOptionalSummaryProvider()
|
| H A D | BlockPointer.cpp | 91 return m_block_struct_type.GetNumChildren(omit_empty_base_classes, nullptr); in CalculateNumChildren()
|
| H A D | Coroutines.cpp | 25 if (valobj_sp->GetNumChildren() != 1) in GetCoroFramePtrFromHandle()
|
| /openbsd-src/gnu/llvm/lldb/examples/synthetic/recognizer_function/ |
| H A D | example.py | 53 for i in range(value.GetNumChildren()):
|
| /openbsd-src/gnu/llvm/lldb/examples/python/ |
| H A D | sbvalue.py | 80 return self.sbvalue.GetNumChildren() 85 for i in range(self.sbvalue.GetNumChildren()):
|
| H A D | disasm.py | 104 … print("%s (number of children = %d):" % (value.GetName(), value.GetNumChildren()))
|
| /openbsd-src/gnu/llvm/lldb/utils/lui/ |
| H A D | lldbutil.py | 892 value.GetName(), value.GetNumChildren()), file=output) 973 if val is None and value.GetNumChildren() > 0: 1033 if child.GetNumChildren() > 0:
|
| /openbsd-src/gnu/llvm/clang/utils/ |
| H A D | ClangDataFormat.py | 121 for i in range(value.GetNumChildren()):
|
| /openbsd-src/gnu/llvm/lldb/include/lldb/Target/ |
| H A D | StackFrameRecognizer.h | 168 return m_parent->GetNumChildren(max);
|
| /openbsd-src/gnu/llvm/lldb/source/DataFormatters/ |
| H A D | FormatManager.cpp | 458 if (valobj.GetNumChildren() == 0) in ShouldPrintAsOneLiner() 477 for (size_t idx = 0; idx < valobj.GetNumChildren(); idx++) { in ShouldPrintAsOneLiner() 529 if (child_sp->GetNumChildren()) { in ShouldPrintAsOneLiner()
|
| /openbsd-src/gnu/llvm/lldb/examples/synthetic/ |
| H A D | gnu_libstdcpp.py | 10 text = "size=" + str(valobj.GetNumChildren()) 11 if valobj.GetNumChildren() > list_capping_size: 17 has_value = valobj.GetNumChildren() > 0
|
| /openbsd-src/gnu/llvm/lldb/source/API/ |
| H A D | SBValue.cpp | 947 uint32_t SBValue::GetNumChildren() { in GetNumChildren() function in SBValue 950 return GetNumChildren(UINT32_MAX); in GetNumChildren() 953 uint32_t SBValue::GetNumChildren(uint32_t max) { in GetNumChildren() function in SBValue 961 num_children = value_sp->GetNumChildren(max); in GetNumChildren()
|
| /openbsd-src/gnu/llvm/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbutil.py | 1283 (value.GetName(), value.GetNumChildren()), file=output) 1367 if val is None and value.GetNumChildren() > 0: 1427 if child.GetNumChildren() > 0:
|