Home
last modified time | relevance | path

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

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/util/internal/
Dprotostream_objectwriter.cc106 Status GetNanosFromStringPiece(StringPiece s_nanos, in GetNanosFromStringPiece() argument
114 while (s_nanos.Consume("0")) { in GetNanosFromStringPiece()
122 if (!s_nanos.empty() && !safe_strto32(s_nanos.ToString(), &i_nanos)) { in GetNanosFromStringPiece()
129 if (s_nanos.find_first_not_of("0123456789") != StringPiece::npos) { in GetNanosFromStringPiece()
136 int32 scale = num_leading_zeros + s_nanos.size(); in GetNanosFromStringPiece()
935 StringPiece s_secs, s_nanos; in RenderDuration() local
936 SplitSecondsAndNanos(value, &s_secs, &s_nanos); in RenderDuration()
945 s_nanos, "Invalid duration format, failed to parse nano seconds", in RenderDuration()