Lines Matching refs:lat
79 double lat; in qlocationutils_readGga() local
81 … if (QLocationUtils::getNmeaLatLong(parts[2], parts[3][0], parts[4], parts[5][0], &lat, &lng)) { in qlocationutils_readGga()
82 coord.setLatitude(lat); in qlocationutils_readGga()
163 double lat; in qlocationutils_readGll() local
165 … if (QLocationUtils::getNmeaLatLong(parts[1], parts[2][0], parts[3], parts[4][0], &lat, &lng)) { in qlocationutils_readGll()
166 coord.setLatitude(lat); in qlocationutils_readGll()
198 double lat; in qlocationutils_readRmc() local
200 … if (QLocationUtils::getNmeaLatLong(parts[3], parts[4][0], parts[5], parts[6][0], &lat, &lng)) { in qlocationutils_readRmc()
201 coord.setLatitude(lat); in qlocationutils_readRmc()
489 …tring, char latDirection, const QByteArray &lngString, char lngDirection, double *lat, double *lng) in getNmeaLatLong() argument
509 *lat = tempLat; in getNmeaLatLong()