Lines Matching refs:newE

5864     ELEMENT_TYPE *newE;  in dtdCopy()  local
5872 newE = (ELEMENT_TYPE *)lookup(oldParser, &(newDtd->elementTypes), name, in dtdCopy()
5874 if (!newE) in dtdCopy()
5877 newE->defaultAtts = (DEFAULT_ATTRIBUTE *) in dtdCopy()
5879 if (!newE->defaultAtts) { in dtdCopy()
5880 ms->free_fcn(newE); in dtdCopy()
5885 newE->idAtt = (ATTRIBUTE_ID *) in dtdCopy()
5887 newE->allocDefaultAtts = newE->nDefaultAtts = oldE->nDefaultAtts; in dtdCopy()
5889 newE->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
5891 for (i = 0; i < newE->nDefaultAtts; i++) { in dtdCopy()
5892 newE->defaultAtts[i].id = (ATTRIBUTE_ID *) in dtdCopy()
5894 newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; in dtdCopy()
5896 newE->defaultAtts[i].value in dtdCopy()
5898 if (!newE->defaultAtts[i].value) in dtdCopy()
5902 newE->defaultAtts[i].value = NULL; in dtdCopy()
5950 ENTITY *newE; in copyEntityTable() local
5958 newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); in copyEntityTable()
5959 if (!newE) in copyEntityTable()
5965 newE->systemId = tem; in copyEntityTable()
5968 newE->base = cachedNewBase; in copyEntityTable()
5974 cachedNewBase = newE->base = tem; in copyEntityTable()
5981 newE->publicId = tem; in copyEntityTable()
5989 newE->textPtr = tem; in copyEntityTable()
5990 newE->textLen = oldE->textLen; in copyEntityTable()
5996 newE->notation = tem; in copyEntityTable()
5998 newE->is_param = oldE->is_param; in copyEntityTable()
5999 newE->is_internal = oldE->is_internal; in copyEntityTable()