Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:setNanos
(Results
1 - 10
of
10
) sorted by relevance
/third_party/protobuf/java/util/src/test/java/com/google/protobuf/util/
H
A
D
TimeUtilTest.java
64
value = Timestamp.newBuilder().
setNanos
(10).build();
in testTimestampStringFormat()
66
value = Timestamp.newBuilder().
setNanos
(10000).build();
in testTimestampStringFormat()
68
value = Timestamp.newBuilder().
setNanos
(10000000).build();
in testTimestampStringFormat()
167
Timestamp value = Timestamp.newBuilder().
setNanos
(-1).build();
in testTimetampInvalidFormat()
176
Timestamp value = Timestamp.newBuilder().
setNanos
(1000000000).build();
in testTimetampInvalidFormat()
251
duration = Duration.newBuilder().
setNanos
(10000000).build();
in testDurationStringFormat()
253
duration = Duration.newBuilder().
setNanos
(10000).build();
in testDurationStringFormat()
255
duration = Duration.newBuilder().
setNanos
(10).build();
in testDurationStringFormat()
298
Duration value = Duration.newBuilder().setSeconds(1).
setNanos
(-1).build();
in testDurationInvalidFormat()
307
Duration value = Duration.newBuilder().setSeconds(-1).
setNanos
(
in testDurationInvalidFormat()
[all...]
/third_party/protobuf/java/util/src/main/java/com/google/protobuf/util/
H
A
D
Durations.java
64
Duration.newBuilder().setSeconds(DURATION_SECONDS_MIN).
setNanos
(-999999999).build();
68
Duration.newBuilder().setSeconds(DURATION_SECONDS_MAX).
setNanos
(999999999).build();
71
public static final Duration ZERO = Duration.newBuilder().setSeconds(0L).
setNanos
(0).build();
281
.
setNanos
(0)
in fromDays()
290
.
setNanos
(0)
in fromHours()
299
.
setNanos
(0)
in fromMinutes()
452
Duration duration = Duration.newBuilder().setSeconds(seconds).
setNanos
(nanos).build();
in normalizedDuration()
H
A
D
Timestamps.java
70
Timestamp.newBuilder().setSeconds(TIMESTAMP_SECONDS_MIN).
setNanos
(0).build();
76
Timestamp.newBuilder().setSeconds(TIMESTAMP_SECONDS_MAX).
setNanos
(999999999).build();
81
public static final Timestamp EPOCH = Timestamp.newBuilder().setSeconds(0).
setNanos
(0).build();
398
Timestamp timestamp = Timestamp.newBuilder().setSeconds(seconds).
setNanos
(nanos).build();
in normalizedTimestamp()
H
A
D
TimeUtil.java
399
return Duration.newBuilder().setSeconds(seconds).
setNanos
(nanos).build();
in normalizedDuration()
/third_party/protobuf/php/src/Google/Protobuf/
H
A
D
Duration.php
164
public function
setNanos
($var)
function
H
A
D
Timestamp.php
46
* .
setNanos
((int) ((millis % 1000) * 1000000)).build();
170
public function
setNanos
($var)
function
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H
A
D
GPBUtil.php
455
$value->
setNanos
($nanoseconds);
501
$duration->
setNanos
($nanos);
H
A
D
Message.php
842
$submsg->
setNanos
($timestamp->getNanos());
/third_party/protobuf/php/tests/
H
A
D
WellKnownTest.php
310
$timestamp->
setNanos
(2);
354
$duration->
setNanos
(2);
H
A
D
EncodeDecodeTest.php
952
$m->
setNanos
(999999999);
968
$m->
setNanos
(123456789);
1199
$packed->
setNanos
(123456789);
Completed in 13 milliseconds