Lines Matching refs:defaultAtts
390 DEFAULT_ATTRIBUTE *defaultAtts; member
3597 if (attId == elementType->defaultAtts[j].id) { in storeAtts()
3598 isCdata = elementType->defaultAtts[j].isCdata; in storeAtts()
3653 const DEFAULT_ATTRIBUTE *da = elementType->defaultAtts + i; in storeAtts()
6799 if (attId == type->defaultAtts[i].id) in defineAttribute()
6807 type->defaultAtts = (DEFAULT_ATTRIBUTE *)MALLOC( in defineAttribute()
6809 if (! type->defaultAtts) { in defineAttribute()
6833 temp = (DEFAULT_ATTRIBUTE *)REALLOC(parser, type->defaultAtts, in defineAttribute()
6838 type->defaultAtts = temp; in defineAttribute()
6841 att = type->defaultAtts + type->nDefaultAtts; in defineAttribute()
7165 ms->free_fcn(e->defaultAtts); in dtdReset()
7206 ms->free_fcn(e->defaultAtts); in dtdDestroy()
7309 newE->defaultAtts in dtdCopy()
7311 if (! newE->defaultAtts) { in dtdCopy()
7323 newE->defaultAtts[i].id = (ATTRIBUTE_ID *)lookup( in dtdCopy()
7324 oldParser, &(newDtd->attributeIds), oldE->defaultAtts[i].id->name, 0); in dtdCopy()
7325 newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; in dtdCopy()
7326 if (oldE->defaultAtts[i].value) { in dtdCopy()
7327 newE->defaultAtts[i].value in dtdCopy()
7328 = poolCopyString(&(newDtd->pool), oldE->defaultAtts[i].value); in dtdCopy()
7329 if (! newE->defaultAtts[i].value) in dtdCopy()
7332 newE->defaultAtts[i].value = NULL; in dtdCopy()