Home
last modified time | relevance | path

Searched refs:s_nanos (Results 1 – 1 of 1) sorted by relevance

/external/protobuf/src/google/protobuf/util/internal/
Dprotostream_objectwriter.cc104 Status GetNanosFromStringPiece(StringPiece s_nanos, in GetNanosFromStringPiece() argument
112 while (s_nanos.Consume("0")) { in GetNanosFromStringPiece()
120 if (!s_nanos.empty() && !safe_strto32(s_nanos.ToString(), &i_nanos)) { in GetNanosFromStringPiece()
127 if (s_nanos.find_first_not_of("0123456789") != StringPiece::npos) { in GetNanosFromStringPiece()
134 int32 scale = num_leading_zeros + s_nanos.size(); in GetNanosFromStringPiece()
927 StringPiece s_secs, s_nanos; in RenderDuration() local
928 SplitSecondsAndNanos(value, &s_secs, &s_nanos); in RenderDuration()
937 s_nanos, "Invalid duration format, failed to parse nano seconds", in RenderDuration()