Home | History | Annotate | Download | only in libxml2

Lines Matching full:refs

115     xmlHashTablePtr refs;       /* references */
165 xmlRelaxNGDefinePtr nextHash; /* next define in defs/refs hash tables */
184 xmlHashTablePtr refs; /* references */
868 if (grammar->refs != NULL) {
869 xmlHashFree(grammar->refs, NULL);
4823 if (ctxt->grammar->refs == NULL)
4824 ctxt->grammar->refs = xmlHashCreate(10);
4825 if (ctxt->grammar->refs == NULL) {
4832 tmp = xmlHashAddEntry(ctxt->grammar->refs, def->name, def);
4837 xmlHashLookup(ctxt->grammar->refs, def->name);
4841 "Error refs definitions '%s'\n",
4845 "Error refs definitions\n",
4939 if (ctxt->parentgrammar->refs == NULL)
4940 ctxt->parentgrammar->refs = xmlHashCreate(10);
4941 if (ctxt->parentgrammar->refs == NULL) {
4949 xmlHashAddEntry(ctxt->parentgrammar->refs, def->name, def);
4954 xmlHashLookup(ctxt->parentgrammar->refs, def->name);
6145 * element boundaries, c.f. Bug #159968 local refs are dropped
6491 * link together defines and refs in this grammar
6493 if (ret->refs != NULL) {
6494 xmlHashScan(ret->refs, (xmlHashScanner) xmlRelaxNGCheckReference,