Lines Matching full:node
110 * @doc: the document containing the node
111 * @node: the node pointer itself
113 * Check whether the given node carries the attributes needed
119 * Returns the xlinkType of the node (XLINK_TYPE_NONE if there is no
123 xlinkIsLink (xmlDocPtr doc, xmlNodePtr node) {
127 if (node == NULL) return(XLINK_TYPE_NONE);
128 if (doc == NULL) doc = node->doc;
133 } else if ((node->ns != NULL) &&
134 (xmlStrEqual(node->ns->href, XHTML_NAMESPACE))) {
149 type = xmlGetNsProp(node, BAD_CAST"type", XLINK_NAMESPACE);
154 role = xmlGetNsProp(node, BAD_CAST "role", XLINK_NAMESPACE);
157 xlink = xmlSearchNs(doc, node, XLINK_NAMESPACE);