Lines Matching refs:atts
3541 * @atts: the attributes values
3546 htmlCheckMeta(htmlParserCtxtPtr ctxt, const xmlChar **atts) {
3552 if ((ctxt == NULL) || (atts == NULL))
3556 att = atts[i++];
3558 value = atts[i++];
3564 att = atts[i++];
3596 const xmlChar **atts;
3613 atts = ctxt->atts;
3692 if (xmlStrEqual(atts[i], attname)) {
3702 * Add the pair to atts
3704 if (atts == NULL) {
3706 atts = (const xmlChar **)
3708 if (atts == NULL) {
3714 ctxt->atts = atts;
3720 n = (const xmlChar **) xmlRealloc((void *) atts,
3728 atts = n;
3729 ctxt->atts = atts;
3732 atts[nbatts++] = attname;
3733 atts[nbatts++] = attvalue;
3734 atts[nbatts] = NULL;
3735 atts[nbatts + 1] = NULL;
3762 htmlCheckMeta(ctxt, atts);
3771 ctxt->sax->startElement(ctxt->userData, name, atts);
3777 if (atts != NULL) {
3779 if (atts[i] != NULL)
3780 xmlFree((xmlChar *) atts[i]);