• Home
  • Raw
  • Download

Lines Matching refs:newE

5809     ELEMENT_TYPE *newE;  in dtdCopy()  local
5817 newE = (ELEMENT_TYPE *)lookup(oldParser, &(newDtd->elementTypes), name, in dtdCopy()
5819 if (!newE) in dtdCopy()
5822 newE->defaultAtts = (DEFAULT_ATTRIBUTE *) in dtdCopy()
5824 if (!newE->defaultAtts) { in dtdCopy()
5825 ms->free_fcn(newE); in dtdCopy()
5830 newE->idAtt = (ATTRIBUTE_ID *) in dtdCopy()
5832 newE->allocDefaultAtts = newE->nDefaultAtts = oldE->nDefaultAtts; in dtdCopy()
5834 newE->prefix = (PREFIX *)lookup(oldParser, &(newDtd->prefixes), in dtdCopy()
5836 for (i = 0; i < newE->nDefaultAtts; i++) { in dtdCopy()
5837 newE->defaultAtts[i].id = (ATTRIBUTE_ID *) in dtdCopy()
5839 newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; in dtdCopy()
5841 newE->defaultAtts[i].value in dtdCopy()
5843 if (!newE->defaultAtts[i].value) in dtdCopy()
5847 newE->defaultAtts[i].value = NULL; in dtdCopy()
5895 ENTITY *newE; in copyEntityTable() local
5903 newE = (ENTITY *)lookup(oldParser, newTable, name, sizeof(ENTITY)); in copyEntityTable()
5904 if (!newE) in copyEntityTable()
5910 newE->systemId = tem; in copyEntityTable()
5913 newE->base = cachedNewBase; in copyEntityTable()
5919 cachedNewBase = newE->base = tem; in copyEntityTable()
5926 newE->publicId = tem; in copyEntityTable()
5934 newE->textPtr = tem; in copyEntityTable()
5935 newE->textLen = oldE->textLen; in copyEntityTable()
5941 newE->notation = tem; in copyEntityTable()
5943 newE->is_param = oldE->is_param; in copyEntityTable()
5944 newE->is_internal = oldE->is_internal; in copyEntityTable()