• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/

Lines Matching refs:namespace

167  * Handle a namespace error
191 * Handle a namespace warning
1042 * @fullname: The attribute name, including namespace prefix
1060 xmlNsPtr namespace;
1063 * Split the full name into a namespace prefix and the tag name
1069 "invalid namespace declaration '%s'\n",
1109 * Check whether it's a namespace definition
1144 /* a default namespace definition */
1149 * Validate also for namespace decls, they are attributes from
1189 "Empty namespace name for prefix %s\n", name, NULL);
1207 /* a standard namespace definition */
1212 * Validate also for namespace decls, they are attributes from
1231 namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, ns);
1232 if (namespace == NULL) {
1242 ((namespace == prop->ns) ||
1243 (xmlStrEqual(namespace->href, prop->ns->href)))) {
1246 name, namespace->href);
1255 namespace = NULL;
1259 ret = xmlNewNsPropEatName(ctxt->node, namespace, name, NULL);
1444 * - this is a namespace prefix
1508 * @fullname: The element name, including namespace prefix
1549 * Split the full name into a namespace prefix and the tag name
1555 * Note : the namespace resolution is deferred until the end of the
1556 * attributes parsing, since local namespace can be defined as
1641 * Search the namespace, note that since the attributes have been
1655 * set the namespace node, making sure that if the default namspace
1874 * @prefix: the attribute namespace prefix if available
1875 * @URI: the attribute namespace name if available
1892 xmlNsPtr namespace = NULL;
1896 * Note: if prefix == NULL, the attribute is not in the default namespace
1899 namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, prefix);
1913 ret->ns = namespace;
1935 ret = xmlNewNsPropEatName(ctxt->node, namespace,
1938 ret = xmlNewNsProp(ctxt->node, namespace, localname, NULL);
2099 * @prefix: the element namespace prefix if available
2100 * @URI: the element namespace name if available
2101 * @nb_namespaces: number of namespace definitions on that node
2102 * @namespaces: pointer to the array of prefix/URI pairs namespace definitions
2109 * It provides the namespace informations for the element, as well as
2110 * the new namespace declarations on the element.
2191 * Build the namespace list
2244 * Search the namespace if it wasn't already found
2298 * @prefix: the element namespace prefix if available
2299 * @URI: the element namespace name if available
2302 * It provides the namespace informations for the element.