Searched refs:nsHash (Results 1 – 5 of 5) sorted by relevance
/external/libxml2/include/libxml/ |
D | xpath.h | 322 xmlHashTablePtr nsHash; /* The namespaces hash table */ member
|
/external/libxslt/libxslt/ |
D | xslt.c | 977 if (style->nsHash != NULL) in xsltFreeStylesheet() 978 xmlHashFree(style->nsHash, NULL); in xsltFreeStylesheet() 3651 if (style->nsHash == NULL) { in xsltGatherNamespaces() 3652 style->nsHash = xmlHashCreate(10); in xsltGatherNamespaces() 3653 if (style->nsHash == NULL) { in xsltGatherNamespaces() 3660 URI = xmlHashLookup(style->nsHash, ns->prefix); in xsltGatherNamespaces() 3666 xmlHashUpdateEntry(style->nsHash, ns->prefix, in xsltGatherNamespaces()
|
D | xsltInternals.h | 1535 xmlHashTablePtr nsHash; /* the set of namespaces in use: member
|
D | transform.c | 522 cur->xpathCtxt->nsHash = style->nsHash; in xsltNewTransformContext() 580 ctxt->xpathCtxt->nsHash = NULL; in xsltFreeTransformContext()
|
/external/libxml2/ |
D | xpath.c | 5068 if (ctxt->nsHash == NULL) in xmlXPathRegisterNs() 5069 ctxt->nsHash = xmlHashCreate(10); in xmlXPathRegisterNs() 5070 if (ctxt->nsHash == NULL) in xmlXPathRegisterNs() 5073 return(xmlHashRemoveEntry(ctxt->nsHash, prefix, in xmlXPathRegisterNs() 5075 return(xmlHashUpdateEntry(ctxt->nsHash, prefix, (void *) xmlStrdup(ns_uri), in xmlXPathRegisterNs() 5111 return((const xmlChar *) xmlHashLookup(ctxt->nsHash, prefix)); in xmlXPathNsLookup() 5125 xmlHashFree(ctxt->nsHash, (xmlHashDeallocator)xmlFree); in xmlXPathRegisteredNsCleanup() 5126 ctxt->nsHash = NULL; in xmlXPathRegisteredNsCleanup() 6060 ret->nsHash = NULL; in xmlXPathNewContext()
|