Lines Matching refs:ParseUtils
38 ParseUtils::splitStr(locationStr, LINE_SEPARATOR, locationStrRecords); in getLocationFromInputStr()
44 ParseUtils::splitStr(locationStrRecords[0], COMMA_SEPARATOR, locationValues); in getLocationFromInputStr()
58 .latitudeDegrees = ParseUtils::tryParseDouble(locationValues[2], 0), in getLocationFromInputStr()
59 .longitudeDegrees = ParseUtils::tryParseDouble(locationValues[3], 0), in getLocationFromInputStr()
60 .altitudeMeters = ParseUtils::tryParseDouble(locationValues[4], 0), in getLocationFromInputStr()
61 .speedMetersPerSec = ParseUtils::tryParseDouble(locationValues[5], 0), in getLocationFromInputStr()
62 .bearingDegrees = ParseUtils::tryParseDouble(locationValues[7], 0), in getLocationFromInputStr()
63 .horizontalAccuracyMeters = ParseUtils::tryParseDouble(locationValues[6], 0), in getLocationFromInputStr()
64 .verticalAccuracyMeters = ParseUtils::tryParseDouble(locationValues[6], 0), in getLocationFromInputStr()
65 .speedAccuracyMetersPerSecond = ParseUtils::tryParseDouble(locationValues[9], 0), in getLocationFromInputStr()
66 .bearingAccuracyDegrees = ParseUtils::tryParseDouble(locationValues[10], 0), in getLocationFromInputStr()
67 .timestampMillis = ParseUtils::tryParseLongLong(locationValues[8], 0), in getLocationFromInputStr()