Lines Matching refs:newE
7286 ELEMENT_TYPE *newE; in dtdCopy() local
7294 newE = (ELEMENT_TYPE *)lookup(oldParser, &(newDtd->elementTypes), name, in dtdCopy()
7296 if (! newE) in dtdCopy()
7309 newE->defaultAtts in dtdCopy()
7311 if (! newE->defaultAtts) { in dtdCopy()
7316 newE->idAtt = (ATTRIBUTE_ID *)lookup(oldParser, &(newDtd->attributeIds), in dtdCopy()
7318 newE->allocDefaultAtts = newE->nDefaultAtts = oldE->nDefaultAtts; in dtdCopy()
7320 newE->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
7322 for (i = 0; i < newE->nDefaultAtts; i++) { in dtdCopy()
7323 newE->defaultAtts[i].id = (ATTRIBUTE_ID *)lookup( in dtdCopy()
7325 newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; in dtdCopy()
7327 newE->defaultAtts[i].value in dtdCopy()
7329 if (! newE->defaultAtts[i].value) in dtdCopy()
7332 newE->defaultAtts[i].value = NULL; in dtdCopy()
7373 ENTITY *newE; in copyEntityTable() local
7381 newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); in copyEntityTable()
7382 if (! newE) in copyEntityTable()
7388 newE->systemId = tem; in copyEntityTable()
7391 newE->base = cachedNewBase; in copyEntityTable()
7397 cachedNewBase = newE->base = tem; in copyEntityTable()
7404 newE->publicId = tem; in copyEntityTable()
7411 newE->textPtr = tem; in copyEntityTable()
7412 newE->textLen = oldE->textLen; in copyEntityTable()
7418 newE->notation = tem; in copyEntityTable()
7420 newE->is_param = oldE->is_param; in copyEntityTable()
7421 newE->is_internal = oldE->is_internal; in copyEntityTable()