• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/libxml2-26/libxml2/

Lines Matching defs:namespace

190  * Handle a namespace error
214 * Handle a namespace warning
1085 * @fullname: The attribute name, including namespace prefix
1103 xmlNsPtr namespace;
1108 namespace = NULL;
1111 * Split the full name into a namespace prefix and the tag name
1117 "invalid namespace declaration '%s'\n",
1167 * Check whether it's a namespace definition
1202 /* a default namespace definition */
1207 * Validate also for namespace decls, they are attributes from
1247 "Empty namespace name for prefix %s\n", name, NULL);
1265 /* a standard namespace definition */
1270 * Validate also for namespace decls, they are attributes from
1288 namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, ns);
1290 if (namespace == NULL) {
1301 ((namespace == prop->ns) ||
1302 (xmlStrEqual(namespace->href, prop->ns->href)))) {
1305 name, namespace->href);
1315 namespace = NULL;
1319 ret = xmlNewNsPropEatName(ctxt->node, namespace, name, NULL);
1509 * - this is a namespace prefix
1573 * @fullname: The element name, including namespace prefix
1614 * Split the full name into a namespace prefix and the tag name
1620 * Note : the namespace resolution is deferred until the end of the
1621 * attributes parsing, since local namespace can be defined as
1706 * Search the namespace, note that since the attributes have been
1720 * set the namespace node, making sure that if the default namspace
1950 * @prefix: the attribute namespace prefix if available
1951 * @URI: the attribute namespace name if available
1968 xmlNsPtr namespace = NULL;
1972 * Note: if prefix == NULL, the attribute is not in the default namespace
1975 namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, prefix);
1989 ret->ns = namespace;
2011 ret = xmlNewNsPropEatName(ctxt->node, namespace,
2014 ret = xmlNewNsProp(ctxt->node, namespace, localname, NULL);
2178 // libxml2 v2.9 changed how elements with undeclared namespace prefixes are handled, an error case that has undefined behavior,
2219 * @prefix: the element namespace prefix if available
2220 * @URI: the element namespace name if available
2221 * @nb_namespaces: number of namespace definitions on that node
2222 * @namespaces: pointer to the array of prefix/URI pairs namespace definitions
2229 * It provides the namespace informations for the element, as well as
2230 * the new namespace declarations on the element.
2271 * Take care of the rare case of an undefined namespace prefix
2338 * Build the namespace list
2395 * Search the namespace if it wasn't already found
2479 * @prefix: the element namespace prefix if available
2480 * @URI: the element namespace name if available
2483 * It provides the namespace informations for the element.