Lines Matching defs:Tree
82 Tree::Tree(const std::map<int32_t, std::map<int32_t, std::string>>& dataMap, int32_t index)
97 void Tree::PrintRootAndImmediateChildren() const
116 void Tree::Clear()
123 void Tree::Print() const
130 TreeNode* Tree::FindNodeWithObjectId(int32_t objectId) const
135 void Tree::AddVariableNode(TreeNode* parentNode, std::unique_ptr<PropertyDescriptor> descriptor)
143 void Tree::AddObjectNode(TreeNode* parentNode, std::unique_ptr<PropertyDescriptor> descriptor)
154 TreeNode* Tree::GetRoot() const
159 TreeNode* Tree::FindNodeWithObjectIdRecursive(TreeNode* node, int32_t objectId) const
191 TreeNode* Tree::FindNodeWithInnerKeyZero(TreeNode* node) const
215 TreeNode* Tree::FindNodeWithCondition() const
220 int32_t Tree::FindObjectByIndex(int32_t index) const
225 int32_t Tree::FindObjectByIndexRecursive(const TreeNode* node, int32_t index) const
279 variableInfo_ = Tree(dataMap, index);