• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-core/libxml2-src/

Lines Matching defs:namespace

173  * Handle a namespace error
197 * Handle a namespace warning
1055 * @fullname: The attribute name, including namespace prefix
1073 xmlNsPtr namespace;
1078 namespace = NULL;
1081 * Split the full name into a namespace prefix and the tag name
1087 "invalid namespace declaration '%s'\n",
1137 * Check whether it's a namespace definition
1172 /* a default namespace definition */
1177 * Validate also for namespace decls, they are attributes from
1217 "Empty namespace name for prefix %s\n", name, NULL);
1235 /* a standard namespace definition */
1240 * Validate also for namespace decls, they are attributes from
1258 namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, ns);
1260 if (namespace == NULL) {
1271 ((namespace == prop->ns) ||
1272 (xmlStrEqual(namespace->href, prop->ns->href)))) {
1275 name, namespace->href);
1285 namespace = NULL;
1289 ret = xmlNewNsPropEatName(ctxt->node, namespace, name, NULL);
1479 * - this is a namespace prefix
1543 * @fullname: The element name, including namespace prefix
1584 * Split the full name into a namespace prefix and the tag name
1590 * Note : the namespace resolution is deferred until the end of the
1591 * attributes parsing, since local namespace can be defined as
1676 * Search the namespace, note that since the attributes have been
1690 * set the namespace node, making sure that if the default namspace
1912 * @prefix: the attribute namespace prefix if available
1913 * @URI: the attribute namespace name if available
1930 xmlNsPtr namespace = NULL;
1934 * Note: if prefix == NULL, the attribute is not in the default namespace
1937 namespace = xmlSearchNs(ctxt->myDoc, ctxt->node, prefix);
1951 ret->ns = namespace;
1973 ret = xmlNewNsPropEatName(ctxt->node, namespace,
1976 ret = xmlNewNsProp(ctxt->node, namespace, localname, NULL);
2137 * @prefix: the element namespace prefix if available
2138 * @URI: the element namespace name if available
2139 * @nb_namespaces: number of namespace definitions on that node
2140 * @namespaces: pointer to the array of prefix/URI pairs namespace definitions
2147 * It provides the namespace informations for the element, as well as
2148 * the new namespace declarations on the element.
2229 * Build the namespace list
2282 * Search the namespace if it wasn't already found
2341 * @prefix: the element namespace prefix if available
2342 * @URI: the element namespace name if available
2345 * It provides the namespace informations for the element.