Home | History | Annotate | Download | only in libxml2

Lines Matching refs:walker

669  * @walker:  a processing function
670 * @user: a user parameter passed to the walker function
673 * apply the walker function to it
676 xmlListWalk(xmlListPtr l, xmlListWalker walker, const void *user) {
679 if ((l == NULL) || (walker == NULL))
682 if((walker(lk->data, user)) == 0)
690 * @walker: a processing function
691 * @user: a user parameter passed to the walker function
694 * apply the walker function to it
697 xmlListReverseWalk(xmlListPtr l, xmlListWalker walker, const void *user) {
700 if ((l == NULL) || (walker == NULL))
703 if((walker(lk->data, user)) == 0)