Lines Matching defs:candidate
1012 xmlNodePtr candidate;
1024 /* create the candidate node */
1025 candidate = make_xml_node(obj);
1026 if (candidate == NULL) {
1043 xmlFreeNode(candidate);
1065 node = xmlAddNextSibling(prev, candidate);
1067 node = xmlAddPrevSibling(node, candidate);
1070 node = xmlAddChild(node, candidate);
1074 /* Failed, free the candidate node. */
1075 xmlFreeNode(candidate);