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.cc129 Status GetNanosFromStringPiece(StringPiece s_nanos, in GetNanosFromStringPiece() argument
137 while (s_nanos.Consume("0")) { in GetNanosFromStringPiece()
145 if (!s_nanos.empty() && !safe_strto32(s_nanos, &i_nanos)) { in GetNanosFromStringPiece()
152 if (s_nanos.find_first_not_of("0123456789") != StringPiece::npos) { in GetNanosFromStringPiece()
159 int32 scale = num_leading_zeros + s_nanos.size(); in GetNanosFromStringPiece()
1017 StringPiece s_secs, s_nanos; in RenderDuration() local
1018 SplitSecondsAndNanos(value, &s_secs, &s_nanos); in RenderDuration()
1027 s_nanos, "Invalid duration format, failed to parse nano seconds", in RenderDuration()