• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching refs:namespace

167  * Handle a namespace error
191 * Handle a namespace warning
1049 * @fullname: The attribute name, including namespace prefix
1067 xmlNsPtr namespace;
1072 namespace = NULL;
1075 * Split the full name into a namespace prefix and the tag name
1081 "invalid namespace declaration '%s'\n",
1122 * Check whether it's a namespace definition
1157 /* a default namespace definition */
1162 * Validate also for namespace decls, they are attributes from
1202 "Empty namespace name for prefix %s\n", name, NULL);
1220 /* a standard namespace definition */
1225 * Validate also for namespace decls, they are attributes from
1244 namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, ns);
1245 if (namespace == NULL) {
1255 ((namespace == prop->ns) ||
1256 (xmlStrEqual(namespace->href, prop->ns->href)))) {
1259 name, namespace->href);
1268 namespace = NULL;
1272 ret = xmlNewNsPropEatName(ctxt->node, namespace, name, NULL);
1457 * - this is a namespace prefix
1521 * @fullname: The element name, including namespace prefix
1562 * Split the full name into a namespace prefix and the tag name
1568 * Note : the namespace resolution is deferred until the end of the
1569 * attributes parsing, since local namespace can be defined as
1654 * Search the namespace, note that since the attributes have been
1668 * set the namespace node, making sure that if the default namspace
1890 * @prefix: the attribute namespace prefix if available
1891 * @URI: the attribute namespace name if available
1908 xmlNsPtr namespace = NULL;
1912 * Note: if prefix == NULL, the attribute is not in the default namespace
1915 namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, prefix);
1929 ret->ns = namespace;
1951 ret = xmlNewNsPropEatName(ctxt->node, namespace,
1954 ret = xmlNewNsProp(ctxt->node, namespace, localname, NULL);
2115 * @prefix: the element namespace prefix if available
2116 * @URI: the element namespace name if available
2117 * @nb_namespaces: number of namespace definitions on that node
2118 * @namespaces: pointer to the array of prefix/URI pairs namespace definitions
2125 * It provides the namespace informations for the element, as well as
2126 * the new namespace declarations on the element.
2207 * Build the namespace list
2260 * Search the namespace if it wasn't already found
2314 * @prefix: the element namespace prefix if available
2315 * @URI: the element namespace name if available
2318 * It provides the namespace informations for the element.