Lines Matching refs:newE
7011 ELEMENT_TYPE *newE; in dtdCopy() local
7019 newE = (ELEMENT_TYPE *)lookup(oldParser, &(newDtd->elementTypes), name, in dtdCopy()
7021 if (! newE) in dtdCopy()
7034 newE->defaultAtts in dtdCopy()
7036 if (! newE->defaultAtts) { in dtdCopy()
7041 newE->idAtt = (ATTRIBUTE_ID *)lookup(oldParser, &(newDtd->attributeIds), in dtdCopy()
7043 newE->allocDefaultAtts = newE->nDefaultAtts = oldE->nDefaultAtts; in dtdCopy()
7045 newE->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
7047 for (i = 0; i < newE->nDefaultAtts; i++) { in dtdCopy()
7048 newE->defaultAtts[i].id = (ATTRIBUTE_ID *)lookup( in dtdCopy()
7050 newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; in dtdCopy()
7052 newE->defaultAtts[i].value in dtdCopy()
7054 if (! newE->defaultAtts[i].value) in dtdCopy()
7057 newE->defaultAtts[i].value = NULL; in dtdCopy()
7098 ENTITY *newE; in copyEntityTable() local
7106 newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); in copyEntityTable()
7107 if (! newE) in copyEntityTable()
7113 newE->systemId = tem; in copyEntityTable()
7116 newE->base = cachedNewBase; in copyEntityTable()
7122 cachedNewBase = newE->base = tem; in copyEntityTable()
7129 newE->publicId = tem; in copyEntityTable()
7136 newE->textPtr = tem; in copyEntityTable()
7137 newE->textLen = oldE->textLen; in copyEntityTable()
7143 newE->notation = tem; in copyEntityTable()
7145 newE->is_param = oldE->is_param; in copyEntityTable()
7146 newE->is_internal = oldE->is_internal; in copyEntityTable()