Lines Matching refs:list

311                     "Attr has no prev and not first of attr list\n");
315 "Node has no prev and not first of parent list\n");
325 "Node has no next and not last of parent list\n");
852 * @attr: the attribute list
855 * Dumps debug information for the attribute list
1079 * @node: the node list
1082 * Dumps debug information for the list of element node, it is recursive
1408 * @attr: the attribute list
1411 * Dumps debug information for the attribute list
1472 * @node: the node list
1475 * Dumps debug information for the list of element node, it is recursive
1602 xmlNodePtr list = NULL;
1609 list = node->children;
1616 list = ((xmlDocPtr) node)->children;
1619 list = ((xmlAttrPtr) node)->children;
1644 for (;list != NULL;ret++)
1645 list = list->next;
1920 * @list: a valid result generated by an xpath evaluation
1925 xmlShellPrintXPathResultCtxt(xmlShellCtxtPtr ctxt,xmlXPathObjectPtr list)
1930 if (list != NULL) {
1931 switch (list->type) {
1936 if (list->nodesetval) {
1937 for (indx = 0; indx < list->nodesetval->nodeNr;
1940 list->nodesetval->nodeTab[indx]);
1955 xmlBoolToText(list->boolval));
1959 "Is a number:%0g\n", list->floatval);
1963 "Is a string:%s\n", list->stringval);
1967 xmlShellPrintXPathError(list->type, NULL);
1974 * @list: a valid result generated by an xpath evaluation
1979 xmlShellPrintXPathResult(xmlXPathObjectPtr list)
1981 xmlShellPrintXPathResultCtxt(NULL, list);
2808 xmlXPathObjectPtr list;
2906 fprintf(ctxt->output, "\tls [path] list contents of path or the current directory\n");
2989 list = xmlXPathEval((xmlChar *) arg, ctxt->pctxt);
2990 xmlXPathDebugDumpObject(ctxt->output, list, 0);
2991 xmlXPathFreeObject(list);
3010 list = xmlXPathEval((xmlChar *) arg, ctxt->pctxt);
3012 list = NULL;
3014 if (list != NULL) {
3015 switch (list->type) {
3023 if (list->nodesetval == NULL)
3027 indx < list->nodesetval->nodeNr;
3031 list->nodesetval->
3035 list->nodesetval->
3075 xmlXPathFreeObject(list);
3089 list = xmlXPathEval((xmlChar *) arg, ctxt->pctxt);
3091 list = NULL;
3093 if (list != NULL) {
3094 switch (list->type) {
3100 if (list->nodesetval != NULL) {
3101 if (list->nodesetval->nodeNr == 1) {
3102 ctxt->node = list->nodesetval->nodeTab[0];
3114 list->nodesetval->nodeNr);
3155 xmlXPathFreeObject(list);
3171 list = xmlXPathEval((xmlChar *) arg, ctxt->pctxt);
3173 list = NULL;
3175 if (list != NULL) {
3176 switch (list->type) {
3184 if (list->nodesetval == NULL)
3188 indx < list->nodesetval->nodeNr;
3193 list->nodesetval->
3233 xmlXPathFreeObject(list);