OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TzData
(Results
1 - 4
of
4
) sorted by null
/libcore/luni/src/test/java/libcore/util/
ZoneInfoDBTest.java
26
// The base
tzdata
file, always present on a device.
28
System.getenv("ANDROID_ROOT") + "/usr/share/zoneinfo/
tzdata
";
32
ZoneInfoDB.
TzData
data = new ZoneInfoDB.
TzData
(TZDATA_IN_ROOT);
33
ZoneInfoDB.
TzData
dataWithEmptyOverride =
34
new ZoneInfoDB.
TzData
(makeEmptyFile(), TZDATA_IN_ROOT);
41
ZoneInfoDB.
TzData
data = new ZoneInfoDB.
TzData
(TZDATA_IN_ROOT);
42
ZoneInfoDB.
TzData
dataWithCorruptOverride =
43
new ZoneInfoDB.
TzData
(makeCorruptFile(), TZDATA_IN_ROOT)
[
all
...]
ZoneInfoTest.java
356
ZoneInfoDB.
TzData
instance = ZoneInfoDB.getInstance();
/libcore/luni/src/main/java/libcore/util/
ZoneInfoDB.java
30
* Olson
tzdata
as the source of time zone information. However, to conserve
37
private static final
TzData
DATA =
38
new
TzData
(System.getenv("ANDROID_DATA") + "/misc/zoneinfo/current/
tzdata
",
39
System.getenv("ANDROID_ROOT") + "/usr/share/zoneinfo/
tzdata
");
41
public static class
TzData
{
83
public
TzData
(String... paths) {
90
// We didn't find any usable
tzdata
on disk, so let's just hard-code knowledge of "GMT".
93
System.logE("Couldn't find any
tzdata
!");
127
System.logE("
tzdata
file \"" + path + "\" was present but invalid!", ex)
[
all
...]
/frameworks/base/
compiled-classes-phone
[
all
...]
Completed in 58 milliseconds