OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ZoneInfo
(Results
1 - 7
of
7
) sorted by null
/development/tools/zoneinfo/
ZoneInfo.java
23
* Copied from
ZoneInfo
and ZoneInfoDB in dalvik.
26
public class
ZoneInfo
extends TimeZone {
53
public static
ZoneInfo
make(String name, byte[] data) {
79
return new
ZoneInfo
(name, transitions, type, gmtoff, isdst, abbrev, data, base);
89
/*package*/
ZoneInfo
(String name, int[] transitions, byte[] type,
239
if (!(obj instanceof
ZoneInfo
)) {
242
ZoneInfo
other = (
ZoneInfo
) obj;
generate
23
javac -target 1.5 ZoneCompactor.java
ZoneInfo
.java
35
cp
zoneinfo
.dat
zoneinfo
.idx ../../../bionic/libc/
zoneinfo
37
echo $version | sed 's/tzdata//' > ../../../bionic/libc/
zoneinfo
/
zoneinfo
.version
ZoneCompactor.java
30
// <produces
zoneinfo
.dat and
zoneinfo
.idx>
84
File zoneInfoFile = new File("
zoneinfo
.dat");
86
OutputStream
zoneInfo
= new FileOutputStream(zoneInfoFile);
108
byte[] data = copyFile(f,
zoneInfo
);
110
TimeZone tz =
ZoneInfo
.make(s, data);
116
zoneInfo
.close();
129
File idxFile = new File("
zoneinfo
.idx");
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/util/
ZoneInfo.java
27
public class
ZoneInfo
extends TimeZone {
67
/*package*/
ZoneInfo
(String name, int[] transitions, byte[] type,
228
if (!(obj instanceof
ZoneInfo
)) {
231
ZoneInfo
other = (
ZoneInfo
) obj;
ZoneInfoDB.java
32
* '
zoneinfo
' database as the source of time zone information. However, to conserve
35
* third file indicates the version of the
zoneinfo
databse used to generate the data.
47
System.getenv("ANDROID_ROOT") + "/usr/share/
zoneinfo
/";
53
ZONE_DIRECTORY_NAME + "
zoneinfo
.dat";
57
* the
zoneinfo
.dat file.
60
ZONE_DIRECTORY_NAME + "
zoneinfo
.idx";
63
*
Zoneinfo
version used prior to creation of the
zoneinfo
.version file,
73
ZONE_DIRECTORY_NAME + "
zoneinfo
.version";
273
return new
ZoneInfo
(name, transitions, type, gmtoff, isdst, abbrev, data, base)
[
all
...]
/dalvik/libcore/luni/src/main/java/java/util/
TimeZone.java
23
import org.apache.harmony.luni.internal.util.
ZoneInfo
;
414
TimeZone zone =
ZoneInfo
.getTimeZone(name);
/external/icu4c/tools/tzcode/
tz2icu.cpp
124
int32_t type; // index into '
ZoneInfo
.types' 0..255
140
int32_t abbr; // index into
ZoneInfo
.abbrs 0..n-1
157
// with a list of the ZoneTypes. A
ZoneInfo
object may have a long
161
//
zoneinfo
file.
162
struct
ZoneInfo
{
179
ZoneInfo
() : finalYear(-1), aliasTo(-1) {}
207
void
ZoneInfo
::clearAliases() {
212
void
ZoneInfo
::addAlias(int32_t index) {
217
void
ZoneInfo
::setAliasTo(int32_t index) {
223
typedef map<string,
ZoneInfo
> ZoneMap
[
all
...]
Completed in 233 milliseconds