• Home
  • Raw
  • Download

Lines Matching refs:localname

702                       const xmlChar *localname,  in xmlTextReaderStartElementNs()  argument
715 printf("xmlTextReaderStartElementNs(%s)\n", localname); in xmlTextReaderStartElementNs()
718 reader->startElementNs(ctx, localname, prefix, URI, nb_namespaces, in xmlTextReaderStartElementNs()
741 const xmlChar * localname, in xmlTextReaderEndElementNs() argument
749 printf("xmlTextReaderEndElementNs(%s)\n", localname); in xmlTextReaderEndElementNs()
752 reader->endElementNs(ctx, localname, prefix, URI); in xmlTextReaderEndElementNs()
2370 xmlChar *localname; in xmlTextReaderGetAttribute() local
2385 localname = xmlSplitQName2(name, &prefix); in xmlTextReaderGetAttribute()
2386 if (localname == NULL) { in xmlTextReaderGetAttribute()
2409 if ((ns->prefix != NULL) && (xmlStrEqual(ns->prefix, localname))) { in xmlTextReaderGetAttribute()
2418 ret = xmlGetNsProp(reader->node, localname, ns->href); in xmlTextReaderGetAttribute()
2421 xmlFree(localname); in xmlTextReaderGetAttribute()
2615 xmlChar *localname; in xmlTextReaderMoveToAttribute() local
2628 localname = xmlSplitQName2(name, &prefix); in xmlTextReaderMoveToAttribute()
2629 if (localname == NULL) { in xmlTextReaderMoveToAttribute()
2668 if ((ns->prefix != NULL) && (xmlStrEqual(ns->prefix, localname))) { in xmlTextReaderMoveToAttribute()
2683 if ((xmlStrEqual(prop->name, localname)) && in xmlTextReaderMoveToAttribute()
2691 if (localname != NULL) in xmlTextReaderMoveToAttribute()
2692 xmlFree(localname); in xmlTextReaderMoveToAttribute()
2698 if (localname != NULL) in xmlTextReaderMoveToAttribute()
2699 xmlFree(localname); in xmlTextReaderMoveToAttribute()