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
/libcore/luni/src/main/java/libcore/util/
ZoneInfoDB.java
44
new TzData(System.getenv("ANDROID_DATA") + "/misc/
zoneinfo
/current/tzdata",
45
System.getenv("ANDROID_ROOT") + "/usr/share/
zoneinfo
/tzdata");
72
*
ZoneInfo
objects are worth caching because they are expensive to create.
76
private final BasicLruCache<String,
ZoneInfo
> cache =
77
new BasicLruCache<String,
ZoneInfo
>(CACHE_SIZE) {
79
protected
ZoneInfo
create(String id) {
89
return
ZoneInfo
.makeTimeZone(id, it);
247
public
ZoneInfo
makeTimeZone(String id) throws IOException {
248
ZoneInfo
zoneInfo
= cache.get(id)
[
all
...]
ZoneInfo.java
33
* Our concrete TimeZone implementation, backed by
zoneinfo
data.
37
public final class
ZoneInfo
extends TimeZone {
62
public static
ZoneInfo
makeTimeZone(String id, BufferIterator it) {
111
return new
ZoneInfo
(id, transitions64, type, gmtOffsets, isDsts);
114
private
ZoneInfo
(String name, long[] transitions, byte[] types, int[] gmtOffsets, byte[] isDsts) {
272
if (!(timeZone instanceof
ZoneInfo
)) {
275
ZoneInfo
other = (
ZoneInfo
) timeZone;
291
if (!(obj instanceof
ZoneInfo
)) {
294
ZoneInfo
other = (ZoneInfo) obj
[
all
...]
/frameworks/base/core/java/android/text/format/
TimeFormatter.java
30
import libcore.util.
ZoneInfo
;
90
public String format(String pattern,
ZoneInfo
.WallTime wallTime,
ZoneInfo
zoneInfo
) {
99
formatInternal(pattern, wallTime,
zoneInfo
);
131
private void formatInternal(String pattern,
ZoneInfo
.WallTime wallTime,
ZoneInfo
zoneInfo
) {
137
outputCurrentChar = handleToken(formatBuffer, wallTime,
zoneInfo
);
146
private boolean handleToken(CharBuffer formatBuffer,
ZoneInfo
.WallTime wallTime
[
all
...]
Time.java
25
import libcore.util.
ZoneInfo
;
[
all
...]
/libcore/luni/src/test/java/libcore/util/
ZoneInfoDBTest.java
28
System.getenv("ANDROID_ROOT") + "/usr/share/
zoneinfo
/tzdata";
84
ZoneInfo
first = data.makeTimeZone(tzId);
85
ZoneInfo
second = data.makeTimeZone(tzId);
/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
...]
/external/mdnsresponder/mDNSShared/
dnsextd_parser.y
48
typedef struct
ZoneInfo
55
}
ZoneInfo
;
Completed in 688 milliseconds