Lines Matching full:prop
2596 xmlAttrPtr prop;
2624 prop = reader->node->properties;
2625 while (prop != NULL) {
2631 if ((xmlStrEqual(prop->name, name)) &&
2632 ((prop->ns == NULL) || (prop->ns->prefix == NULL))) {
2633 reader->curnode = (xmlNodePtr) prop;
2636 prop = prop->next;
2655 prop = reader->node->properties;
2656 while (prop != NULL) {
2662 if ((xmlStrEqual(prop->name, localname)) &&
2663 (prop->ns != NULL) && (xmlStrEqual(prop->ns->prefix, prefix))) {
2664 reader->curnode = (xmlNodePtr) prop;
2667 prop = prop->next;
2698 xmlAttrPtr prop;
2727 prop = node->properties;
2728 while (prop != NULL) {
2734 if (xmlStrEqual(prop->name, localName) &&
2735 ((prop->ns != NULL) &&
2736 (xmlStrEqual(prop->ns->href, namespaceURI)))) {
2737 reader->curnode = (xmlNodePtr) prop;
2740 prop = prop->next;
3729 * @prop: the xmlParserProperties to set
3739 xmlTextReaderSetParserProp(xmlTextReaderPtr reader, int prop, int value) {
3740 xmlParserProperties p = (xmlParserProperties) prop;
3789 * @prop: the xmlParserProperties to get
3796 xmlTextReaderGetParserProp(xmlTextReaderPtr reader, int prop) {
3797 xmlParserProperties p = (xmlParserProperties) prop;