Lines Matching refs:oldParser
404 dtdCopy(XML_Parser oldParser,
407 copyEntityTable(XML_Parser oldParser,
1015 XML_ExternalEntityParserCreate(XML_Parser oldParser, in XML_ExternalEntityParserCreate() argument
1019 XML_Parser parser = oldParser; in XML_ExternalEntityParserCreate()
1116 if (oldExternalEntityRefHandlerArg != oldParser) in XML_ExternalEntityParserCreate()
1121 parentParser = oldParser; in XML_ExternalEntityParserCreate()
1127 if (!dtdCopy(oldParser, _dtd, oldDtd, &parser->m_mem) in XML_ExternalEntityParserCreate()
5806 dtdCopy(XML_Parser oldParser, DTD *newDtd, const DTD *oldDtd, const XML_Memory_Handling_Suite *ms) in dtdCopy() argument
5821 if (!lookup(oldParser, &(newDtd->prefixes), name, sizeof(PREFIX))) in dtdCopy()
5843 newA = (ATTRIBUTE_ID *)lookup(oldParser, &(newDtd->attributeIds), name, in dtdCopy()
5853 newA->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
5872 newE = (ELEMENT_TYPE *)lookup(oldParser, &(newDtd->elementTypes), name, in dtdCopy()
5886 lookup(oldParser, &(newDtd->attributeIds), oldE->idAtt->name, 0); in dtdCopy()
5889 newE->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
5893 lookup(oldParser, &(newDtd->attributeIds), oldE->defaultAtts[i].id->name, 0); in dtdCopy()
5907 if (!copyEntityTable(oldParser, in dtdCopy()
5914 if (!copyEntityTable(oldParser, in dtdCopy()
5938 copyEntityTable(XML_Parser oldParser, in copyEntityTable() argument
5958 newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); in copyEntityTable()