Searched refs:atts (Results 1 - 25 of 41) sorted by relevance

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/expat-2.0.1/xmlwf/
H A Dxmlwf.c121 startElement(void *userData, const XML_Char *name, const XML_Char **atts) argument
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) argument
189 p = atts;
257 defaultStartElement(void *userData, const XML_Char *name, const XML_Char **atts) argument
282 nopStartElement(void *userData, const XML_Char *name, const XML_Char **atts) argument
333 metaStartElement(void *userData, const XML_Char *name, const XML_Char **atts) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/expat-2.0.1/examples/
H A Delements.c26 startElement(void *userData, const char *name, const char **atts) argument
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/
H A DtestHTML.c369 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts) argument
374 if (atts != NULL) {
375 for (i = 0;(atts[i] != NULL);i++) {
376 fprintf(stdout, ", %s", atts[i++]);
377 if (atts[i] != NULL) {
379 const unsigned char *att = atts[i];
H A DtestSAX.c609 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts) argument
617 if (atts != NULL) {
618 for (i = 0;(atts[i] != NULL);i++) {
619 fprintf(stdout, ", %s='", atts[i++]);
620 if (atts[i] != NULL)
621 fprintf(stdout, "%s'", atts[i]);
H A DSAX2.c1377 const xmlChar *prefix, const xmlChar **atts) {
1423 if (atts != NULL) {
1425 att = atts[i];
1430 att = atts[i];
1488 if (atts != NULL) {
1490 att = atts[i];
1495 att = atts[i];
1522 * @atts: An array of name/value attributes pairs, NULL terminated
1527 xmlSAX2StartElement(void *ctx, const xmlChar *fullname, const xmlChar **atts) argument
1631 xmlCheckDefaultedAttributes(ctxt, name, prefix, atts);
1376 xmlCheckDefaultedAttributes(xmlParserCtxtPtr ctxt, const xmlChar *name, const xmlChar *prefix, const xmlChar **atts) argument
[all...]
H A Dparser.c1433 const xmlChar **atts; local
1437 if (ctxt->atts == NULL) {
1439 atts = (const xmlChar **)
1441 if (atts == NULL) goto mem_error;
1442 ctxt->atts = atts;
1449 atts = (const xmlChar **) xmlRealloc((void *) ctxt->atts,
1451 if (atts == NULL) goto mem_error;
1452 ctxt->atts
7942 const xmlChar **atts = ctxt->atts; local
8624 const xmlChar **atts = ctxt->atts; local
[all...]
H A DHTMLparser.c3387 * @atts: the attributes values
3392 htmlCheckMeta(htmlParserCtxtPtr ctxt, const xmlChar **atts) { argument
3398 if ((ctxt == NULL) || (atts == NULL))
3402 att = atts[i++];
3404 value = atts[i++];
3410 att = atts[i++];
3442 const xmlChar **atts; local
3457 atts = ctxt->atts;
3535 if (xmlStrEqual(atts[
[all...]
H A Druntest.c1134 startElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts) argument
1142 if (atts != NULL) {
1143 for (i = 0;(atts[i] != NULL);i++) {
1144 fprintf(SAXdebug, ", %s='", atts[i++]);
1145 if (atts[i] != NULL)
1146 fprintf(SAXdebug, "%s'", atts[i]);
1531 htmlstartElementDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar **atts) argument
1536 if (atts != NULL) {
1537 for (i = 0;(atts[i] != NULL);i++) {
1538 fprintf(SAXdebug, ", %s", atts[
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/expat-2.0.1/tests/
H A Druntests.c147 const XML_Char *name, const XML_Char **atts)
213 const XML_Char **atts)
216 if (storage->count < 0 && atts != NULL && atts[0] != NULL) {
218 CharData_AppendXMLChars(storage, atts[1], -1);
683 const XML_Char **atts)
686 for (i = 0; atts[i] != NULL; i += 2) {
687 const XML_Char *attrname = atts[i];
688 const XML_Char *value = atts[i + 1];
1089 const XML_Char **atts)
146 dummy_start_element(void *userData, const XML_Char *name, const XML_Char **atts) argument
212 accumulate_attribute(void *userData, const XML_Char *name, const XML_Char **atts) argument
681 check_attr_contains_normalized_whitespace(void *userData, const XML_Char *name, const XML_Char **atts) argument
1088 triplet_start_checker(void *userData, const XML_Char *name, const XML_Char **atts) argument
1136 overwrite_start_checker(void *userData, const XML_Char *name, const XML_Char **atts) argument
1218 start_element_fail(void *userData, const XML_Char *name, const XML_Char **atts) argument
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/expat-2.0.1/lib/
H A Dxmltok.h148 ATTRIBUTE *atts);
240 #define XmlGetAttributes(enc, ptr, attsMax, atts) \
241 (((enc)->getAtts)(enc, ptr, attsMax, atts))
H A Dxmltok_impl.c1427 first attsMax attributes are stored in atts.
1432 int attsMax, ATTRIBUTE *atts)
1444 atts[nAtts].name = ptr; \
1445 atts[nAtts].normalized = 1; \
1462 atts[nAtts].valuePtr = ptr + MINBPC(enc);
1469 atts[nAtts].valueEnd = ptr;
1476 atts[nAtts].valuePtr = ptr + MINBPC(enc);
1483 atts[nAtts].valueEnd = ptr;
1489 atts[nAtts].normalized = 0;
1496 && atts[nAtt
1431 getAtts(const ENCODING *enc, const char *ptr, int attsMax, ATTRIBUTE *atts) argument
[all...]
H A Dxmlparse.c636 #define atts (parser->m_atts) macro
735 atts = (ATTRIBUTE *)MALLOC(attsSize * sizeof(ATTRIBUTE));
736 if (atts == NULL) {
742 FREE(atts);
754 FREE(atts);
1132 FREE((void *)atts);
2361 (const XML_Char **)atts);
2386 startElementHandler(handlerArg, name.str, (const XML_Char **)atts);
2648 n = XmlGetAttributes(enc, attStr, attsSize, atts);
2653 temp = (ATTRIBUTE *)REALLOC((void *)atts, attsSiz
[all...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gnulib-local/lib/libxml/
H A DSAX2.c1364 const xmlChar *prefix, const xmlChar **atts) {
1410 if (atts != NULL) {
1412 att = atts[i];
1417 att = atts[i];
1475 if (atts != NULL) {
1477 att = atts[i];
1482 att = atts[i];
1509 * @atts: An array of name/value attributes pairs, NULL terminated
1514 xmlSAX2StartElement(void *ctx, const xmlChar *fullname, const xmlChar **atts) argument
1618 xmlCheckDefaultedAttributes(ctxt, name, prefix, atts);
1363 xmlCheckDefaultedAttributes(xmlParserCtxtPtr ctxt, const xmlChar *name, const xmlChar *prefix, const xmlChar **atts) argument
[all...]
H A Dparser.c1148 const xmlChar **atts; local
1152 if (ctxt->atts == NULL) {
1154 atts = (const xmlChar **)
1156 if (atts == NULL) goto mem_error;
1157 ctxt->atts = atts;
1164 atts = (const xmlChar **) xmlRealloc((void *) ctxt->atts,
1166 if (atts == NULL) goto mem_error;
1167 ctxt->atts
7126 const xmlChar **atts = ctxt->atts; local
7865 const xmlChar **atts = ctxt->atts; local
[all...]
H A DHTMLparser.c3348 * @atts: the attributes values
3353 htmlCheckMeta(htmlParserCtxtPtr ctxt, const xmlChar **atts) { argument
3359 if ((ctxt == NULL) || (atts == NULL))
3363 att = atts[i++];
3365 value = atts[i++];
3371 att = atts[i++];
3403 const xmlChar **atts; local
3417 atts = ctxt->atts;
3494 if (xmlStrEqual(atts[
[all...]
H A DSAX.in.h110 const xmlChar **atts);
H A DSAX2.in.h105 const xmlChar **atts);
H A Dlegacy.c1131 * @atts: An array of name/value attributes pairs, NULL terminated
1137 startElement(void *ctx, const xmlChar * fullname, const xmlChar ** atts) argument
1139 xmlSAX2StartElement(ctx, fullname, atts);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/libxml/
H A DSAX2.c1364 const xmlChar *prefix, const xmlChar **atts) {
1410 if (atts != NULL) {
1412 att = atts[i];
1417 att = atts[i];
1475 if (atts != NULL) {
1477 att = atts[i];
1482 att = atts[i];
1509 * @atts: An array of name/value attributes pairs, NULL terminated
1514 xmlSAX2StartElement(void *ctx, const xmlChar *fullname, const xmlChar **atts) argument
1618 xmlCheckDefaultedAttributes(ctxt, name, prefix, atts);
1363 xmlCheckDefaultedAttributes(xmlParserCtxtPtr ctxt, const xmlChar *name, const xmlChar *prefix, const xmlChar **atts) argument
[all...]
H A Dparser.c1148 const xmlChar **atts; local
1152 if (ctxt->atts == NULL) {
1154 atts = (const xmlChar **)
1156 if (atts == NULL) goto mem_error;
1157 ctxt->atts = atts;
1164 atts = (const xmlChar **) xmlRealloc((void *) ctxt->atts,
1166 if (atts == NULL) goto mem_error;
1167 ctxt->atts
7126 const xmlChar **atts = ctxt->atts; local
7865 const xmlChar **atts = ctxt->atts; local
[all...]
H A DHTMLparser.c3348 * @atts: the attributes values
3353 htmlCheckMeta(htmlParserCtxtPtr ctxt, const xmlChar **atts) { argument
3359 if ((ctxt == NULL) || (atts == NULL))
3363 att = atts[i++];
3365 value = atts[i++];
3371 att = atts[i++];
3403 const xmlChar **atts; local
3417 atts = ctxt->atts;
3494 if (xmlStrEqual(atts[
[all...]
H A DSAX.in.h110 const xmlChar **atts);
H A DSAX2.in.h105 const xmlChar **atts);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/libxml2-2.7.2/include/libxml/
H A DSAX.h110 const xmlChar **atts);
H A DSAX2.h105 const xmlChar **atts);

Completed in 329 milliseconds

12