OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rawoffset
(Results
1 - 6
of
6
) sorted by null
/libcore/ojluni/src/main/java/java/util/
TimeZone.java
240
int
rawoffset
= getRawOffset();
local
246
offsets[0] =
rawoffset
;
249
return
rawoffset
+ dstoffset;
618
* @param
rawOffset
the given time zone GMT offset in milliseconds.
624
public static synchronized String[] getAvailableIDs(int
rawOffset
) {
625
return ZoneInfoDB.getInstance().getAvailableIDs(
rawOffset
);
/external/icu/icu4c/source/tools/tzcode/
tz2icu.cpp
136
int64_t
rawoffset
; // raw seconds offset from GMT
member in struct:ZoneType
148
ZoneType() :
rawoffset
(-1), dstoffset(-1), abbr(-1) {}
152
return
rawoffset
== other.
rawoffset
&&
403
type.
rawoffset
= readcoded(file);
428
// Initial type's
rawoffset
is same with the
rawoffset
after the
430
int64_t rawoffset0 = (info.types.at(info.transitions.at(0).type)).
rawoffset
;
433
if (info.types.at(i).
rawoffset
== rawoffset0
1206
int64_t
rawoffset
;
member in struct:SimplifiedZoneType
[
all
...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TimeZoneTest.java
225
int
rawOffset
= tz.getRawOffset();
226
assertEquals(-8 * 60 * 60 * 1000,
rawOffset
);
227
List<String> ids = Arrays.asList(TimeZone.getAvailableIDs(
rawOffset
));
245
int
rawoffset
= tz.getRawOffset();
local
246
String[] ids = TimeZone.getAvailableIDs(
rawoffset
);
/external/icu/icu4c/source/test/intltest/
tzregts.cpp
419
"
RawOffset
(" + tzRawOffsetFloat + ")" +
498
// h is in half-hours from GMT;
rawoffset
is in millis
499
int32_t
rawoffset
= h * 1800000;
local
508
StringEnumeration* ids = TimeZone::createEnumeration(
rawoffset
);
510
dataerrln("Fail: TimeZone::createEnumeration(
rawoffset
)");
[
all
...]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneRegression.java
280
"
RawOffset
(" + tzRawOffsetFloat + ")" +
350
// h is in half-hours from GMT;
rawoffset
is in millis
351
int
rawoffset
= h * 1800000;
local
358
String[] ids = TimeZone.getAvailableIDs(
rawoffset
);
[
all
...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneRegression.java
276
"
RawOffset
(" + tzRawOffsetFloat + ")" +
346
// h is in half-hours from GMT;
rawoffset
is in millis
347
int
rawoffset
= h * 1800000;
local
354
String[] ids = TimeZone.getAvailableIDs(
rawoffset
);
[
all
...]
Completed in 274 milliseconds