Lines Matching refs:Node
97 class ANDROID_API Node {
101 explicit Properties(Node* node) : mNode(node) {} in Properties()
106 Node* mNode;
108 Node(const Node& node) { in Node() function
111 Node() {} in Node() function
121 virtual ~Node(){} in ~Node()
128 class ANDROID_API Path : public Node {
142 explicit PathProperties(Node* node) : Properties(node) {} in PathProperties()
222 explicit FullPathProperties(Node* mNode) : Properties(mNode), mTrimDirty(false) {} in FullPathProperties()
404 class ANDROID_API Group: public Node {
408 explicit GroupProperties(Node* mNode) : Properties(mNode) {} in GroupProperties()
495 void addChild(Node* child);
497 Node::setPropertyChangedListener(listener); in setPropertyChangedListener()
532 std::vector< std::unique_ptr<Node> > mChildren;