Lines Matching refs:defaultAtts
388 DEFAULT_ATTRIBUTE *defaultAtts; member
3466 if (attId == elementType->defaultAtts[j].id) { in storeAtts()
3467 isCdata = elementType->defaultAtts[j].isCdata; in storeAtts()
3522 const DEFAULT_ATTRIBUTE *da = elementType->defaultAtts + i; in storeAtts()
6524 if (attId == type->defaultAtts[i].id) in defineAttribute()
6532 type->defaultAtts = (DEFAULT_ATTRIBUTE *)MALLOC( in defineAttribute()
6534 if (! type->defaultAtts) { in defineAttribute()
6558 temp = (DEFAULT_ATTRIBUTE *)REALLOC(parser, type->defaultAtts, in defineAttribute()
6563 type->defaultAtts = temp; in defineAttribute()
6566 att = type->defaultAtts + type->nDefaultAtts; in defineAttribute()
6890 ms->free_fcn(e->defaultAtts); in dtdReset()
6931 ms->free_fcn(e->defaultAtts); in dtdDestroy()
7034 newE->defaultAtts in dtdCopy()
7036 if (! newE->defaultAtts) { in dtdCopy()
7048 newE->defaultAtts[i].id = (ATTRIBUTE_ID *)lookup( in dtdCopy()
7049 oldParser, &(newDtd->attributeIds), oldE->defaultAtts[i].id->name, 0); in dtdCopy()
7050 newE->defaultAtts[i].isCdata = oldE->defaultAtts[i].isCdata; in dtdCopy()
7051 if (oldE->defaultAtts[i].value) { in dtdCopy()
7052 newE->defaultAtts[i].value in dtdCopy()
7053 = poolCopyString(&(newDtd->pool), oldE->defaultAtts[i].value); in dtdCopy()
7054 if (! newE->defaultAtts[i].value) in dtdCopy()
7057 newE->defaultAtts[i].value = NULL; in dtdCopy()