Lines Matching defs:namespace

167  * Handle a namespace error
191 * Handle a namespace warning
1041 * @fullname: The attribute name, including namespace prefix
1059 xmlNsPtr namespace;
1062 * Split the full name into a namespace prefix and the tag name
1068 "invalid namespace declaration '%s'\n",
1108 * Check whether it's a namespace definition
1143 /* a default namespace definition */
1148 * Validate also for namespace decls, they are attributes from
1188 "Empty namespace name for prefix %s\n", name, NULL);
1206 /* a standard namespace definition */
1211 * Validate also for namespace decls, they are attributes from
1230 namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, ns);
1231 if (namespace == NULL) {
1241 ((namespace == prop->ns) ||
1242 (xmlStrEqual(namespace->href, prop->ns->href)))) {
1245 name, namespace->href);
1254 namespace = NULL;
1258 ret = xmlNewNsPropEatName(ctxt->node, namespace, name, NULL);
1443 * - this is a namespace prefix
1507 * @fullname: The element name, including namespace prefix
1548 * Split the full name into a namespace prefix and the tag name
1554 * Note : the namespace resolution is deferred until the end of the
1555 * attributes parsing, since local namespace can be defined as
1640 * Search the namespace, note that since the attributes have been
1654 * set the namespace node, making sure that if the default namspace
1873 * @prefix: the attribute namespace prefix if available
1874 * @URI: the attribute namespace name if available
1891 xmlNsPtr namespace = NULL;
1895 * Note: if prefix == NULL, the attribute is not in the default namespace
1898 namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, prefix);
1912 ret->ns = namespace;
1934 ret = xmlNewNsPropEatName(ctxt->node, namespace,
1937 ret = xmlNewNsProp(ctxt->node, namespace, localname, NULL);
2098 * @prefix: the element namespace prefix if available
2099 * @URI: the element namespace name if available
2100 * @nb_namespaces: number of namespace definitions on that node
2101 * @namespaces: pointer to the array of prefix/URI pairs namespace definitions
2108 * It provides the namespace informations for the element, as well as
2109 * the new namespace declarations on the element.
2190 * Build the namespace list
2243 * Search the namespace if it wasn't already found
2297 * @prefix: the element namespace prefix if available
2298 * @URI: the element namespace name if available
2301 * It provides the namespace informations for the element.