Lines Matching refs:cur
183 xmlNodePtr cur = xmlDocGetRootElement(doc); in ReadTimeZoneData() local
184 if (!cur || xmlStrcmp(cur->name, reinterpret_cast<const xmlChar *>(rootTag))) { in ReadTimeZoneData()
188 cur = cur->xmlChildrenNode; in ReadTimeZoneData()
189 …while (cur != nullptr && !xmlStrcmp(cur->name, reinterpret_cast<const xmlChar *>(secondRootTag))) { in ReadTimeZoneData()
190 xmlNodePtr value = cur->xmlChildrenNode; in ReadTimeZoneData()
217 cur = cur->next; in ReadTimeZoneData()
248 xmlNodePtr cur = xmlDocGetRootElement(doc); in ComputeLocale() local
249 if (!cur || xmlStrcmp(cur->name, reinterpret_cast<const xmlChar *>(supportLocalesTag))) { in ComputeLocale()
253 cur = cur->xmlChildrenNode; in ComputeLocale()
254 while (cur != nullptr) { in ComputeLocale()
255 xmlChar *content = xmlNodeGetContent(cur); in ComputeLocale()
270 cur = cur->next; in ComputeLocale()