Lines Matching full:prop
2631 xmlAttrPtr prop;
2659 prop = reader->node->properties;
2660 while (prop != NULL) {
2666 if ((xmlStrEqual(prop->name, name)) &&
2667 ((prop->ns == NULL) || (prop->ns->prefix == NULL))) {
2668 reader->curnode = (xmlNodePtr) prop;
2671 prop = prop->next;
2690 prop = reader->node->properties;
2691 while (prop != NULL) {
2697 if ((xmlStrEqual(prop->name, localname)) &&
2698 (prop->ns != NULL) && (xmlStrEqual(prop->ns->prefix, prefix))) {
2699 reader->curnode = (xmlNodePtr) prop;
2702 prop = prop->next;
2733 xmlAttrPtr prop;
2762 prop = node->properties;
2763 while (prop != NULL) {
2769 if (xmlStrEqual(prop->name, localName) &&
2770 ((prop->ns != NULL) &&
2771 (xmlStrEqual(prop->ns->href, namespaceURI)))) {
2772 reader->curnode = (xmlNodePtr) prop;
2775 prop = prop->next;
3771 * @prop: the xmlParserProperties to set
3781 xmlTextReaderSetParserProp(xmlTextReaderPtr reader, int prop, int value) {
3782 xmlParserProperties p = (xmlParserProperties) prop;
3831 * @prop: the xmlParserProperties to get
3838 xmlTextReaderGetParserProp(xmlTextReaderPtr reader, int prop) {
3839 xmlParserProperties p = (xmlParserProperties) prop;