Lines Matching refs:node1
164 xmlNodePtr node1; in import() local
176 node1 = xmlDocGetRootElement(doc); in import()
177 if (node1 == NULL) { in import()
182 << StringPrintf("%s: root=%s", fn, node1->name); in import()
184 node1 = node1->xmlChildrenNode; in import()
185 while (node1) // loop through all elements in <Routes ... in import()
187 if (xmlStrcmp(node1->name, (const xmlChar*)"Route") == 0) { in import()
188 xmlChar* value = xmlGetProp(node1, (const xmlChar*)"Type"); in import()
193 xmlNodePtr node2 = node1->xmlChildrenNode; in import()
207 xmlNodePtr node2 = node1->xmlChildrenNode; in import()
219 node1 = node1->next; in import()