Lines Matching refs:newE
6499 ELEMENT_TYPE *newE; in dtdCopy() local
6507 newE = (ELEMENT_TYPE *)lookup(oldParser, &(newDtd->elementTypes), name, in dtdCopy()
6509 if (!newE) in dtdCopy()
6512 newE->defaultAtts = (DEFAULT_ATTRIBUTE *) in dtdCopy()
6514 if (!newE->defaultAtts) { in dtdCopy()
6519 newE->idAtt = (ATTRIBUTE_ID *) in dtdCopy()
6521 newE->allocDefaultAtts = newE->nDefaultAtts = oldE->nDefaultAtts; in dtdCopy()
6523 newE->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
6525 for (i = 0; i < newE->nDefaultAtts; i++) { in dtdCopy()
6526 newE->defaultAtts[i].id = (ATTRIBUTE_ID *) in dtdCopy()
6528 newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; in dtdCopy()
6530 newE->defaultAtts[i].value in dtdCopy()
6532 if (!newE->defaultAtts[i].value) in dtdCopy()
6536 newE->defaultAtts[i].value = NULL; in dtdCopy()
6584 ENTITY *newE; in copyEntityTable() local
6592 newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); in copyEntityTable()
6593 if (!newE) in copyEntityTable()
6599 newE->systemId = tem; in copyEntityTable()
6602 newE->base = cachedNewBase; in copyEntityTable()
6608 cachedNewBase = newE->base = tem; in copyEntityTable()
6615 newE->publicId = tem; in copyEntityTable()
6623 newE->textPtr = tem; in copyEntityTable()
6624 newE->textLen = oldE->textLen; in copyEntityTable()
6630 newE->notation = tem; in copyEntityTable()
6632 newE->is_param = oldE->is_param; in copyEntityTable()
6633 newE->is_internal = oldE->is_internal; in copyEntityTable()