HomeSort by relevance Sort by last modified time
    Searched full:nanos_part (Results 1 - 1 of 1) sorted by null

  /external/protobuf/src/google/protobuf/util/
time_util.cc 201 string seconds_part, nanos_part; local
205 nanos_part = "0";
208 nanos_part = value.substr(pos + 1, value.length() - pos - 2);
215 int64 nanos = strto64(nanos_part.c_str(), &end, 10);
216 if (end != nanos_part.c_str() + nanos_part.length()) {
219 nanos = nanos * Pow(10, 9 - nanos_part.length());

Completed in 86 milliseconds