OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ZoneInfo
(Results
1 - 2
of
2
) sorted by null
/libcore/luni/src/main/java/libcore/util/
ZoneInfo.java
35
* Our concrete TimeZone implementation, backed by
zoneinfo
data.
46
* implementations. See {@link
ZoneInfo
#makeTimeZone(String, BufferIterator)}.
65
public final class
ZoneInfo
extends TimeZone {
118
* future) and stored in a file from which {@link
ZoneInfo
#makeTimeZone(String, BufferIterator)}
124
* <p>In terms of {@link
ZoneInfo
tzfile} structure this array is of length {@code tzh_timecnt}
144
* <p>In the {@link
ZoneInfo
tzfile} structure the type array only contains unique instances of
181
public static
ZoneInfo
makeTimeZone(String id, BufferIterator it) {
188
public static
ZoneInfo
makeTimeZone(String id, BufferIterator it, long currentTimeMillis) {
244
return new
ZoneInfo
(id, transitions64, type, gmtOffsets, isDsts, currentTimeMillis);
247
private
ZoneInfo
(String name, long[] transitions, byte[] types, int[] gmtOffsets, byte[] isDsts
[
all
...]
/external/icu/icu4c/source/tools/tzcode/
tz2icu.cpp
125
int32_t type; // index into '
ZoneInfo
.types' 0..255
141
int32_t abbr; // index into
ZoneInfo
.abbrs 0..n-1
158
// with a list of the ZoneTypes. A
ZoneInfo
object may have a long
162
//
zoneinfo
file.
163
struct
ZoneInfo
{
180
ZoneInfo
() : finalYear(-1), aliasTo(-1) {}
208
void
ZoneInfo
::clearAliases() {
213
void
ZoneInfo
::addAlias(int32_t index) {
218
void
ZoneInfo
::setAliasTo(int32_t index) {
224
typedef map<string,
ZoneInfo
> ZoneMap
[
all
...]
Completed in 55 milliseconds