Lines Matching refs:tmpStr
45 xmlChar *tmpStr; in parseLocation() local
49 if (!attr || !(tmpStr = xmlGetProp(ptNode, (const xmlChar *)"lat"))) { in parseLocation()
53 int read = SscanfWithCLocale(reinterpret_cast<const char *>(tmpStr), "%f", in parseLocation()
55 xmlFree(tmpStr); // Caller-freed in parseLocation()
63 if (!attr || !(tmpStr = xmlGetProp(ptNode, (const xmlChar *)"lon"))) { in parseLocation()
67 int read = SscanfWithCLocale(reinterpret_cast<const char *>(tmpStr), "%f", in parseLocation()
69 xmlFree(tmpStr); // Caller-freed in parseLocation()
84 tmpStr = nullptr; in parseLocation()
87 if ((tmpStr = xmlNodeListGetString(doc, field->children, 1))) { in parseLocation()
91 int results = sscanf((const char *)tmpStr, "%u-%u-%uT%u:%u:%u", in parseLocation()
107 xmlFree(tmpStr); // Caller-freed in parseLocation()
111 if ((tmpStr = xmlNodeListGetString(doc, field->children, 1))) { in parseLocation()
112 int read = SscanfWithCLocale(reinterpret_cast<const char *>(tmpStr), in parseLocation()
114 xmlFree(tmpStr); // Caller-freed in parseLocation()
121 if ((tmpStr = xmlNodeListGetString(doc, field->children, 1))) { in parseLocation()
122 result->name = reinterpret_cast<const char *>(tmpStr); in parseLocation()
123 xmlFree(tmpStr); // Caller-freed in parseLocation()
127 if ((tmpStr = xmlNodeListGetString(doc, field->children, 1))) { in parseLocation()
128 result->description = reinterpret_cast<const char *>(tmpStr); in parseLocation()
129 xmlFree(tmpStr); // Caller-freed in parseLocation()