Lines Matching refs:defaultAtts
362 DEFAULT_ATTRIBUTE *defaultAtts; member
3379 if (attId == elementType->defaultAtts[j].id) { in storeAtts()
3380 isCdata = elementType->defaultAtts[j].isCdata; in storeAtts()
3435 const DEFAULT_ATTRIBUTE *da = elementType->defaultAtts + i; in storeAtts()
6369 if (attId == type->defaultAtts[i].id) in defineAttribute()
6377 type->defaultAtts = (DEFAULT_ATTRIBUTE *)MALLOC( in defineAttribute()
6379 if (! type->defaultAtts) { in defineAttribute()
6403 temp = (DEFAULT_ATTRIBUTE *)REALLOC(parser, type->defaultAtts, in defineAttribute()
6408 type->defaultAtts = temp; in defineAttribute()
6411 att = type->defaultAtts + type->nDefaultAtts; in defineAttribute()
6731 ms->free_fcn(e->defaultAtts); in dtdReset()
6772 ms->free_fcn(e->defaultAtts); in dtdDestroy()
6865 newE->defaultAtts in dtdCopy()
6867 if (! newE->defaultAtts) { in dtdCopy()
6879 newE->defaultAtts[i].id = (ATTRIBUTE_ID *)lookup( in dtdCopy()
6880 oldParser, &(newDtd->attributeIds), oldE->defaultAtts[i].id->name, 0); in dtdCopy()
6881 newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; in dtdCopy()
6882 if (oldE->defaultAtts[i].value) { in dtdCopy()
6883 newE->defaultAtts[i].value in dtdCopy()
6884 = poolCopyString(&(newDtd->pool), oldE->defaultAtts[i].value); in dtdCopy()
6885 if (! newE->defaultAtts[i].value) in dtdCopy()
6888 newE->defaultAtts[i].value = NULL; in dtdCopy()