OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TZDATA
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/libcore/util/
ZoneInfoDB.java
39
* Olson
tzdata
as the source of time zone information. However, to conserve
55
private static final MemoryMappedFile
TZDATA
= mapData();
81
BufferIterator it =
TZDATA
.bigEndianIterator();
86
if (!magic.equals("
tzdata
") || tzdata_version[11] != 0) {
87
throw new RuntimeException("bad
tzdata
magic: " + Arrays.toString(tzdata_version));
104
throw new AssertionError("Couldn't find any
tzdata
!");
112
return MemoryMappedFile.mmapRO(directory + "
tzdata
");
119
byte[] bytes = new byte[(int)
TZDATA
.size() - zoneTabOffset];
184
BufferIterator it =
TZDATA
.bigEndianIterator();
/external/icu4c/data/
Makefile.in
729
# if the tzcode directory contains a new
tzdata
*.tar.gz file, use it for zoneinfo
730
ifeq ($(
TZDATA
),)
731
TZDATA
= $(firstword $(wildcard $(top_builddir)/tools/tzcode/
tzdata
*.tar.gz) $(wildcard $(top_srcdir)/tools/tzcode/
tzdata
*.tar.gz))
734
ifneq ($(
TZDATA
),)
742
@echo Note: $(MISCSRCDIR)/zoneinfo.txt is IGNORED because $(
TZDATA
) is present.
746
$(ZONEINFO): $(
TZDATA
)
[
all
...]
Completed in 494 milliseconds