Lines Matching refs:defaultAtts
361 DEFAULT_ATTRIBUTE *defaultAtts; member
3377 if (attId == elementType->defaultAtts[j].id) { in storeAtts()
3378 isCdata = elementType->defaultAtts[j].isCdata; in storeAtts()
3433 const DEFAULT_ATTRIBUTE *da = elementType->defaultAtts + i; in storeAtts()
6242 if (attId == type->defaultAtts[i].id) in defineAttribute()
6250 type->defaultAtts = (DEFAULT_ATTRIBUTE *)MALLOC( in defineAttribute()
6252 if (! type->defaultAtts) { in defineAttribute()
6276 temp = (DEFAULT_ATTRIBUTE *)REALLOC(parser, type->defaultAtts, in defineAttribute()
6281 type->defaultAtts = temp; in defineAttribute()
6284 att = type->defaultAtts + type->nDefaultAtts; in defineAttribute()
6604 ms->free_fcn(e->defaultAtts); in dtdReset()
6645 ms->free_fcn(e->defaultAtts); in dtdDestroy()
6738 newE->defaultAtts in dtdCopy()
6740 if (! newE->defaultAtts) { in dtdCopy()
6752 newE->defaultAtts[i].id = (ATTRIBUTE_ID *)lookup( in dtdCopy()
6753 oldParser, &(newDtd->attributeIds), oldE->defaultAtts[i].id->name, 0); in dtdCopy()
6754 newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; in dtdCopy()
6755 if (oldE->defaultAtts[i].value) { in dtdCopy()
6756 newE->defaultAtts[i].value in dtdCopy()
6757 = poolCopyString(&(newDtd->pool), oldE->defaultAtts[i].value); in dtdCopy()
6758 if (! newE->defaultAtts[i].value) in dtdCopy()
6761 newE->defaultAtts[i].value = NULL; in dtdCopy()