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:setSeconds
(Results
1 - 14
of
14
) sorted by relevance
/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();
280
.
setSeconds
(checkedMultiply(days, SECONDS_PER_DAY))
in fromDays()
289
.
setSeconds
(checkedMultiply(hours, SECONDS_PER_HOUR))
in fromHours()
298
.
setSeconds
(checkedMultiply(minutes, SECONDS_PER_MINUTE))
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/java/util/src/test/java/com/google/protobuf/util/
H
A
D
TimeUtilTest.java
148
Timestamp.newBuilder().
setSeconds
(TimeUtil.TIMESTAMP_SECONDS_MIN - 1).build();
in testTimetampInvalidFormat()
158
Timestamp.newBuilder().
setSeconds
(TimeUtil.TIMESTAMP_SECONDS_MAX + 1).build();
in testTimetampInvalidFormat()
249
duration = Duration.newBuilder().
setSeconds
(1).build();
in testDurationStringFormat()
280
Duration value = Duration.newBuilder().
setSeconds
(TimeUtil.DURATION_SECONDS_MIN - 1).build();
in testDurationInvalidFormat()
289
Duration value = Duration.newBuilder().
setSeconds
(TimeUtil.DURATION_SECONDS_MAX + 1).build();
in testDurationInvalidFormat()
298
Duration value = Duration.newBuilder().
setSeconds
(1).setNanos(-1).build();
in testDurationInvalidFormat()
307
Duration value = Duration.newBuilder().
setSeconds
(-1).setNanos(1).build();
in testDurationInvalidFormat()
/third_party/typescript/tests/baselines/reference/
H
A
D
library_DatePrototypeProperties.js
35
Date.prototype.
setSeconds
(0);
84
Date.prototype.
setSeconds
(0);
/third_party/jerryscript/tests/jerry/
H
A
D
date-setters.js
38
/* 15.9.5.30 Date.prototype.
setSeconds
(sec [, ms ] ) */
40
assert (d.
setSeconds
(1) == sec);
43
assert (d.
setSeconds
(1, 1) == sec + ms);
232
assert (isNaN (d.
setSeconds
()));
/third_party/protobuf/php/src/Google/Protobuf/
H
A
D
Duration.php
128
public function
setSeconds
($var)
function
H
A
D
Timestamp.php
45
* Timestamp timestamp = Timestamp.newBuilder().
setSeconds
(millis / 1000)
138
public function
setSeconds
($var)
function
/third_party/jerryscript/tests/jerry/es5.1/
H
A
D
builtin-prototypes.js
31
assert (isNaN (Date.prototype.
setSeconds
()));
/third_party/protobuf/php/tests/
H
A
D
memory_leak_test.php
155
$from->
setSeconds
(1);
H
A
D
WellKnownTest.php
309
$timestamp->
setSeconds
(1);
353
$duration->
setSeconds
(1);
H
A
D
EncodeDecodeTest.php
951
$m->
setSeconds
(1234);
967
$m->
setSeconds
(946684800);
1198
$packed->
setSeconds
(946684800);
/third_party/protobuf/php/src/Google/Protobuf/Internal/
H
A
D
GPBUtil.php
454
$value->
setSeconds
($seconds);
500
$duration->
setSeconds
($seconds);
H
A
D
Message.php
841
$submsg->
setSeconds
($timestamp->getSeconds());
Completed in 11 milliseconds