Searched refs:foundPos (Results 1 – 1 of 1) sorted by relevance
6869 size_t foundPos = nmeaString.find("GGA"); in reportGGAToNtrip() local6873 if (foundPos != string::npos && foundPos >= POS_OF_GGA) { in reportGGAToNtrip()6874 size_t foundNextSentence = nmeaString.find("$", foundPos); in reportGGAToNtrip()6877 GGAString = nmeaString.substr(foundPos - POS_OF_GGA, foundNextSentence); in reportGGAToNtrip()6880 GGAString = nmeaString.substr(foundPos - POS_OF_GGA); in reportGGAToNtrip()6884 foundPos = GGAString.find(","); in reportGGAToNtrip()6885 while (foundPos != string::npos && foundNth < COMMAS_BEFORE_VALID) { in reportGGAToNtrip()6886 foundPos++; in reportGGAToNtrip()6888 foundPos = GGAString.find(",", foundPos); in reportGGAToNtrip()6891 if (COMMAS_BEFORE_VALID == foundNth && GGAString.at(foundPos-1) != '0') { in reportGGAToNtrip()