Searched refs:octalStr (Results 1 – 1 of 1) sorted by relevance
41 static off_t ParseOctalStr(const string &octalStr, size_t destLen) in ParseOctalStr() argument44 string::const_iterator it = octalStr.begin(); in ParseOctalStr()46 while (it != octalStr.end() && (*it < '0' || *it > '7') && destLen > 0) { in ParseOctalStr()51 while (it != octalStr.end() && *it >= '0' && *it <= '7' && destLen > 0) { in ParseOctalStr()