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:leapyear
(Results
1 - 5
of
5
) sorted by relevance
/third_party/icu/icu4c/source/tools/tzcode/
H
A
D
localtime.c
836
register int
leapyear
;
in transtime()
local
842
leapyear
= isleap(year);
in transtime()
854
if (
leapyear
&& rulep->r_day >= 60)
in transtime()
895
mon_lengths[
leapyear
][rulep->r_mon - 1])
in transtime()
905
value += mon_lengths[
leapyear
][i] * SECSPERDAY;
in transtime()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H
A
D
localtime.c
834
register int
leapyear
;
in transtime()
local
840
leapyear
= isleap(year);
in transtime()
852
if (
leapyear
&& rulep->r_day >= 60)
in transtime()
893
mon_lengths[
leapyear
][rulep->r_mon - 1])
in transtime()
903
value += mon_lengths[
leapyear
][i] * SECSPERDAY;
in transtime()
/third_party/tzdata/
H
A
D
localtime.c
999
register bool
leapyear
;
in transtime()
local
1004
leapyear
= isleap(year);
in transtime()
1016
if (
leapyear
&& rulep->r_day >= 60)
in transtime()
1057
mon_lengths[
leapyear
][rulep->r_mon - 1])
in transtime()
1067
value += mon_lengths[
leapyear
][i] * SECSPERDAY;
in transtime()
/third_party/python/Lib/
H
A
D
datetime.py
136
leapyear
= n1 == 3 and (n4 != 24 or n100 == 3)
137
assert
leapyear
== _is_leap(year)
139
preceding = _DAYS_BEFORE_MONTH[month] + (month > 2 and
leapyear
)
142
preceding -= _DAYS_IN_MONTH[month] + (month == 2 and
leapyear
)
/third_party/python/Modules/
H
A
D
_datetimemodule.c
287
int n, n1, n4, n100, n400,
leapyear
, preceding;
in ord_to_ymd()
local
351
leapyear
= n1 == 3 && (n4 != 24 || n100 == 3);
in ord_to_ymd()
352
assert(
leapyear
== is_leap(*year));
in ord_to_ymd()
354
preceding = (_days_before_month[*month] + (*month > 2 &&
leapyear
));
in ord_to_ymd()
Completed in 35 milliseconds