Searched defs:Node (Results 1 - 3 of 3) sorted by relevance

/system/core/libmemunreachable/
H A DTarjan.h28 class Node { class
30 allocator::set<Node<T>*> references_in;
31 allocator::set<Node<T>*> references_out;
37 Node(T* ptr, Allocator<Node> allocator) : references_in(allocator), references_out(allocator), function in class:Node
39 Node(Node&& rhs) = default;
40 void Edge(Node<T>* ref) {
51 DISALLOW_COPY_AND_ASSIGN(Node<T>);
55 using Graph = allocator::vector<Node<
[all...]
/system/update_engine/scripts/update_payload/
H A Dchecker.py108 class Node(object): class in class:_PayloadReport
138 class FieldNode(Node):
171 class SubReportNode(Node):
186 class SectionNode(Node):
/system/media/camera/docs/
H A Dmetadata_model.py23 Node: Base class for most nodes.
42 class Node(object): class in inherits:object
47 parent: An edge to a parent Node.
69 pred: a predicate function that acts as a filter for a Node
90 pred: a predicate function that acts as a filter for a Node
93 The first Node from find_all(pred), or None if there were no results.
105 pred: A predicate function that acts as a filter for a Node
120 pred: A predicate function that acts as a filter for a Node
179 print >> sys.stderr, ("ERROR: Node '%s' doesn't match the parent" + \
191 class Metadata(Node)
[all...]

Completed in 269 milliseconds