Lines Matching refs:oldParser
403 dtdCopy(XML_Parser oldParser,
406 copyEntityTable(XML_Parser oldParser,
1014 XML_ExternalEntityParserCreate(XML_Parser oldParser, in XML_ExternalEntityParserCreate() argument
1018 XML_Parser parser = oldParser; in XML_ExternalEntityParserCreate()
1115 if (oldExternalEntityRefHandlerArg != oldParser) in XML_ExternalEntityParserCreate()
1120 parentParser = oldParser; in XML_ExternalEntityParserCreate()
1126 if (!dtdCopy(oldParser, _dtd, oldDtd, &parser->m_mem) in XML_ExternalEntityParserCreate()
5805 dtdCopy(XML_Parser oldParser, DTD *newDtd, const DTD *oldDtd, const XML_Memory_Handling_Suite *ms) in dtdCopy() argument
5820 if (!lookup(oldParser, &(newDtd->prefixes), name, sizeof(PREFIX))) in dtdCopy()
5842 newA = (ATTRIBUTE_ID *)lookup(oldParser, &(newDtd->attributeIds), name, in dtdCopy()
5852 newA->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
5871 newE = (ELEMENT_TYPE *)lookup(oldParser, &(newDtd->elementTypes), name, in dtdCopy()
5885 lookup(oldParser, &(newDtd->attributeIds), oldE->idAtt->name, 0); in dtdCopy()
5888 newE->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
5892 lookup(oldParser, &(newDtd->attributeIds), oldE->defaultAtts[i].id->name, 0); in dtdCopy()
5906 if (!copyEntityTable(oldParser, in dtdCopy()
5913 if (!copyEntityTable(oldParser, in dtdCopy()
5937 copyEntityTable(XML_Parser oldParser, in copyEntityTable() argument
5957 newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); in copyEntityTable()