Searched refs:children_stack (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | FormatEntity.h | 180 children_stack.clear(); in Clear() 181 children_stack.emplace_back(); in Clear() 198 if (children_stack != rhs.children_stack) 219 llvm::SmallVector<std::vector<Entry>, 1> children_stack; member
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 288 : string(s ? s : ""), printf_format(f ? f : ""), children_stack({{}}), in Entry() 292 : string(s.data(), s.size()), children_stack({{}}), type(Type::String) {} in Entry() 295 : string(1, ch), printf_format(), children_stack({{}}), type(Type::String) { in Entry() 299 assert(level < children_stack.size()); in GetChildren() 300 return children_stack[level]; in GetChildren() 330 children_stack.emplace_back(); in StartAlternative() 435 for (const auto &children : children_stack) { in Dump() 1339 for (const auto &child : entry.children_stack[0]) { in Format() 1363 for (auto &children : entry.children_stack) { in Format()
|