Lines Matching refs:oldParser
396 dtdCopy(XML_Parser oldParser,
399 copyEntityTable(XML_Parser oldParser,
980 XML_ExternalEntityParserCreate(XML_Parser oldParser, in XML_ExternalEntityParserCreate() argument
984 XML_Parser parser = oldParser; in XML_ExternalEntityParserCreate()
1081 if (oldExternalEntityRefHandlerArg != oldParser) in XML_ExternalEntityParserCreate()
1086 parentParser = oldParser; in XML_ExternalEntityParserCreate()
1092 if (!dtdCopy(oldParser, _dtd, oldDtd, &parser->m_mem) in XML_ExternalEntityParserCreate()
5751 dtdCopy(XML_Parser oldParser, DTD *newDtd, const DTD *oldDtd, const XML_Memory_Handling_Suite *ms) in dtdCopy() argument
5766 if (!lookup(oldParser, &(newDtd->prefixes), name, sizeof(PREFIX))) in dtdCopy()
5788 newA = (ATTRIBUTE_ID *)lookup(oldParser, &(newDtd->attributeIds), name, in dtdCopy()
5798 newA->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
5817 newE = (ELEMENT_TYPE *)lookup(oldParser, &(newDtd->elementTypes), name, in dtdCopy()
5831 lookup(oldParser, &(newDtd->attributeIds), oldE->idAtt->name, 0); in dtdCopy()
5834 newE->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
5838 lookup(oldParser, &(newDtd->attributeIds), oldE->defaultAtts[i].id->name, 0); in dtdCopy()
5852 if (!copyEntityTable(oldParser, in dtdCopy()
5859 if (!copyEntityTable(oldParser, in dtdCopy()
5883 copyEntityTable(XML_Parser oldParser, in copyEntityTable() argument
5903 newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); in copyEntityTable()