Home
last modified time | relevance | path

Searched refs:SscanfWithCLocale (Results 1 – 4 of 4) sorted by relevance

/device/google/cuttlefish/host/libs/location/
DStringParse.h40 int SscanfWithCLocale(const char* string, const char* format, ...);
45 int SscanfWithCLocale(const char* string, const char* format, Args... args) { in SscanfWithCLocale() function
46 return ::SscanfWithCLocale(string, format, std::forward<Args>(args)...); in SscanfWithCLocale()
DGpxParser.cpp53 int read = SscanfWithCLocale(reinterpret_cast<const char *>(tmpStr), "%f", in parseLocation()
67 int read = SscanfWithCLocale(reinterpret_cast<const char *>(tmpStr), "%f", in parseLocation()
112 int read = SscanfWithCLocale(reinterpret_cast<const char *>(tmpStr), in parseLocation()
DKmlParser.cpp61 while (3 == SscanfWithCLocale(coordinates + offset, "%f , %f , %f%n", in parseCoordinates()
85 result = (3 == SscanfWithCLocale(coordinates.c_str(), "%f %f %f", in parseGxTrack()
DStringParse.cpp29 extern "C" int SscanfWithCLocale(const char* string, const char* format, ...) { in SscanfWithCLocale() function