Lines Matching refs:Node
45 Node *createElement(char const *name);
46 Node *createTextNode(char const *content);
47 Node *createTextNode(char const *content, bool const is_CData);
48 Node *createComment(char const *content);
49 Node *createPI(char const *target, char const *content);
51 void notifyChildAdded(Node &parent, Node &child, Node *prev);
53 void notifyChildRemoved(Node &parent, Node &child, Node *prev);
55 void notifyChildOrderChanged(Node &parent, Node &child,
56 Node *old_prev, Node *new_prev);
58 void notifyContentChanged(Node &node,
62 void notifyAttributeChanged(Node &node, GQuark name,
68 : Node(), SimpleNode(doc), Document(), NodeObserver(),