Lines Matching full:node
35 Represents package dependency tree, where each node is a DepTree with a
44 name Name of new tree node.
51 Add new child node to current node.
60 def AddChildNode(self, node): argument
62 Add existing child node to current node.
65 node Tree node to add
67 self.children.append(node)
71 Remove child node.
83 Return node with matching name. Return None if not found.
86 name Name of node to return
91 node = child.GetNode(name)
92 if node:
93 return node
98 Return parent of node with matching name. Return none if not found.
101 name Name of node to get parent of
102 parent_node Parent of current node
114 Return list of node names from head to matching name.
118 name Name of node
119 path List of node names from head to current node
134 Return list of node paths that end in name, or match regex_str.
138 name Name of node to search for
139 regex_str Regex string to match node names
140 path Path of node names from head to current node
158 Mode existing from_name node to become child of to_name node.
161 from_name Name of node to make a child of to_name
162 to_name Name of node to make parent of from_name
174 to the right of 'name' node, so that they become children of the
175 'name' node.
178 name Name of node to look for
204 Return post-order list of node names.
217 Print pre-order node names with indentation denoting node depth level.
328 head Head node of the dependency tree
330 dep_tree Current dependency tree node