Searched defs:getOffset (Results 1 - 12 of 12) sorted by relevance

/libcore/luni/src/main/java/java/text/
H A DCollationElementIterator.java86 * {@code getOffset()} returns the index of the first character in the
88 * Hence calling {@code getOffset()} immediately after
102 public int getOffset() { method in class:CollationElementIterator
103 return this.icuIterator.getOffset();
172 * subsequent call made to {@code getOffset()} may not return the same value
/libcore/luni/src/main/java/java/net/
H A DDatagramPacket.java153 public synchronized int getOffset() { method in class:DatagramPacket
/libcore/luni/src/main/java/libcore/icu/
H A DCollationElementIteratorICU.java113 public int getOffset() { method in class:CollationElementIteratorICU
114 return NativeCollation.getOffset(address);
H A DNativeCollation.java37 public static native int getOffset(int address); method in class:NativeCollation
/libcore/luni/src/main/java/java/io/
H A DObjectStreamField.java156 public int getOffset() { method in class:ObjectStreamField
/libcore/luni/src/test/java/libcore/java/util/
H A DOldTimeZoneTest.java31 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) { method in class:OldTimeZoneTest.Mock_TimeZone
/libcore/luni/src/main/java/java/lang/
H A DHexStringParser.java162 int offset = getOffset(strIntegerPart, strDecimalPart);
294 private int getOffset(String strIntegerPart, String strDecimalPart) { method in class:HexStringParser
/libcore/luni/src/main/java/java/util/
H A DTimeZone.java47 * which isn't usually very useful. More usefully, the {@link #getOffset} methods return the
242 * probably want {@link #getOffset} instead, which tells you the offset
256 public int getOffset(long time) { method in class:TimeZone
275 public abstract int getOffset(int era, int year, int month, int day, method in class:TimeZone
H A DGregorianCalendar.java449 int offsetBefore = getOffset(time + zoneOffset);
450 int offsetAfter = getOffset(time + zoneOffset + delta);
452 if (getOffset(time + zoneOffset + delta + dstDelta) == offsetAfter) {
493 int dstOffset = fields[YEAR] <= 0 ? 0 : getTimeZone().getOffset(AD,
770 // It is not possible to simply subtract getOffset(timeVal) from timeVal
776 long timeValWithoutDST = timeVal - getOffset(timeVal)
778 timeVal -= getOffset(timeValWithoutDST);
1015 private int getOffset(long localTime) { method in class:GregorianCalendar
1056 return timeZone.getOffset(AD, year, month, date, dayOfWeek, millis);
H A DSimpleTimeZone.java342 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int time) { method in class:SimpleTimeZone
472 public int getOffset(long time) { method in class:SimpleTimeZone
478 return getOffset(GregorianCalendar.AD, fields[0], fields[1], fields[2],
527 return useDaylightTime() && getOffset(time.getTime()) != getRawOffset();
/libcore/luni/src/main/java/libcore/util/
H A DZoneInfo.java137 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int millis) { method in class:ZoneInfo
162 return getOffset(calc);
166 public int getOffset(long when) { method in class:ZoneInfo
/libcore/luni/src/main/java/org/apache/harmony/security/asn1/
H A DBerInputStream.java683 public final int getOffset() { method in class:BerInputStream

Completed in 427 milliseconds