Lines Matching refs:newE
6725 ELEMENT_TYPE *newE; in dtdCopy() local
6733 newE = (ELEMENT_TYPE *)lookup(oldParser, &(newDtd->elementTypes), name, in dtdCopy()
6735 if (! newE) in dtdCopy()
6738 newE->defaultAtts in dtdCopy()
6740 if (! newE->defaultAtts) { in dtdCopy()
6745 newE->idAtt = (ATTRIBUTE_ID *)lookup(oldParser, &(newDtd->attributeIds), in dtdCopy()
6747 newE->allocDefaultAtts = newE->nDefaultAtts = oldE->nDefaultAtts; in dtdCopy()
6749 newE->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
6751 for (i = 0; i < newE->nDefaultAtts; i++) { in dtdCopy()
6752 newE->defaultAtts[i].id = (ATTRIBUTE_ID *)lookup( in dtdCopy()
6754 newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; in dtdCopy()
6756 newE->defaultAtts[i].value in dtdCopy()
6758 if (! newE->defaultAtts[i].value) in dtdCopy()
6761 newE->defaultAtts[i].value = NULL; in dtdCopy()
6802 ENTITY *newE; in copyEntityTable() local
6810 newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); in copyEntityTable()
6811 if (! newE) in copyEntityTable()
6817 newE->systemId = tem; in copyEntityTable()
6820 newE->base = cachedNewBase; in copyEntityTable()
6826 cachedNewBase = newE->base = tem; in copyEntityTable()
6833 newE->publicId = tem; in copyEntityTable()
6840 newE->textPtr = tem; in copyEntityTable()
6841 newE->textLen = oldE->textLen; in copyEntityTable()
6847 newE->notation = tem; in copyEntityTable()
6849 newE->is_param = oldE->is_param; in copyEntityTable()
6850 newE->is_internal = oldE->is_internal; in copyEntityTable()