Home | History | Annotate | Download | only in xmlwf

Lines Matching refs:atts

121 startElement(void *userData, const XML_Char *name, const XML_Char **atts)
129 p = atts;
132 nAtts = (int)((p - atts) >> 1);
134 qsort((void *)atts, nAtts, sizeof(XML_Char *) * 2, attcmp);
135 while (*atts) {
137 fputts(*atts++, fp);
138 attributeValue(fp, *atts);
139 atts++;
167 startElementNS(void *userData, const XML_Char *name, const XML_Char **atts)
189 p = atts;
192 nAtts = (int)((p - atts) >> 1);
194 qsort((void *)atts, nAtts, sizeof(XML_Char *) * 2, nsattcmp);
195 while (*atts) {
196 name = *atts++;
205 attributeValue(fp, *atts);
210 atts++;
258 const XML_Char **atts)
282 nopStartElement(void *userData, const XML_Char *name, const XML_Char **atts)
334 const XML_Char **atts)
339 = atts + XML_GetSpecifiedAttributeCount(parser);
345 idAttPtr = atts + idAttIndex;
349 if (*atts) {
352 ftprintf(fp, T("<attribute name=\"%s\" value=\""), atts[0]);
353 characterData(fp, atts[1], (int)tcslen(atts[1]));
354 if (atts >= specifiedAttsEnd)
356 else if (atts == idAttPtr)
360 } while (*(atts += 2));