Lines Matching refs:result
22 xmlXPathObjectPtr result;
29 result = xmlXPathEvalExpression(xpath, context);
31 if (result == NULL) {
35 if(xmlXPathNodeSetIsEmpty(result->nodesetval)){
36 xmlXPathFreeObject(result);
37 printf("No result\n");
40 return result;
49 xmlXPathObjectPtr result;
60 result = getnodeset (doc, xpath);
61 if (result) {
62 nodeset = result->nodesetval;
68 xmlXPathFreeObject (result);