Searched refs:funcHash (Results 1 – 3 of 3) sorted by relevance
/external/libxml2/include/libxml/ |
D | xpath.h | 300 xmlHashTablePtr funcHash; /* Hash table of defined funcs */ member
|
/external/libxslt/libxslt/ |
D | functions.c | 84 XML_CAST_FPTR(ret) = xmlHashLookup2(ctxt->funcHash, name, ns_uri); in xsltXPathFunctionLookup()
|
/external/libxml2/ |
D | xpath.c | 4750 if (ctxt->funcHash == NULL) in xmlXPathRegisterFuncNS() 4751 ctxt->funcHash = xmlHashCreate(0); in xmlXPathRegisterFuncNS() 4752 if (ctxt->funcHash == NULL) in xmlXPathRegisterFuncNS() 4755 return(xmlHashRemoveEntry2(ctxt->funcHash, name, ns_uri, NULL)); in xmlXPathRegisterFuncNS() 4756 return(xmlHashAddEntry2(ctxt->funcHash, name, ns_uri, XML_CAST_FPTR(f))); in xmlXPathRegisterFuncNS() 4834 if (ctxt->funcHash == NULL) in xmlXPathFunctionLookupNS() 4837 XML_CAST_FPTR(ret) = xmlHashLookup2(ctxt->funcHash, name, ns_uri); in xmlXPathFunctionLookupNS() 4852 xmlHashFree(ctxt->funcHash, NULL); in xmlXPathRegisteredFuncsCleanup() 4853 ctxt->funcHash = NULL; in xmlXPathRegisteredFuncsCleanup() 6008 ret->funcHash = xmlHashCreate(0); in xmlXPathNewContext()
|