Home
last modified time | relevance | path

Searched refs:SHORT (Results 1 – 25 of 35) sorted by relevance

12

/libcore/luni/src/main/java/java/nio/
DByteBufferAsShortBuffer.java44 super(byteBuffer.capacity() / SizeOf.SHORT, byteBuffer.effectiveDirectAddress); in ByteBufferAsShortBuffer()
64 byteBuffer.limit(limit * SizeOf.SHORT); in compact()
65 byteBuffer.position(position * SizeOf.SHORT); in compact()
89 return byteBuffer.getShort(position++ * SizeOf.SHORT); in get()
95 return byteBuffer.getShort(index * SizeOf.SHORT); in get()
100 byteBuffer.limit(limit * SizeOf.SHORT); in get()
101 byteBuffer.position(position * SizeOf.SHORT); in get()
143 byteBuffer.putShort(position++ * SizeOf.SHORT, c); in put()
150 byteBuffer.putShort(index * SizeOf.SHORT, c); in put()
156 byteBuffer.limit(limit * SizeOf.SHORT); in put()
[all …]
DByteArrayBuffer.java145 int byteCount = checkGetBounds(SizeOf.SHORT, dst.length, dstOffset, shortCount); in get()
146 …et(dst, dstOffset, byteCount, backingArray, arrayOffset + position, SizeOf.SHORT, order.needsSwap); in get()
224 int newPosition = position + SizeOf.SHORT; in getShort()
234 checkIndex(index, SizeOf.SHORT); in getShort()
303 int byteCount = checkPutBounds(SizeOf.SHORT, src.length, srcOffset, shortCount); in put()
304 …ut(backingArray, arrayOffset + position, byteCount, src, srcOffset, SizeOf.SHORT, order.needsSwap); in put()
394 checkIndex(index, SizeOf.SHORT); in putShort()
403 int newPosition = position + SizeOf.SHORT; in putShort()
DDirectByteBuffer.java156 int byteCount = checkGetBounds(SizeOf.SHORT, dst.length, dstOffset, shortCount); in get()
262 int newPosition = position + SizeOf.SHORT; in getShort()
273 checkIndex(index, SizeOf.SHORT); in getShort()
399 int byteCount = checkPutBounds(SizeOf.SHORT, src.length, srcOffset, shortCount); in put()
529 int newPosition = position + SizeOf.SHORT; in putShort()
543 checkIndex(index, SizeOf.SHORT); in putShort()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/
DDateFormatTest.java53 DateFormat f1 = DateFormat.getDateTimeInstance(DateFormat.SHORT, in test_getAvailableLocales()
54 DateFormat.SHORT, locales[i]); in test_getAvailableLocales()
93 .getDateInstance(DateFormat.SHORT); in test_getDateInstanceI()
96 DateFormat.SHORT, Locale.getDefault()))); in test_getDateInstanceI()
143 DateFormat.SHORT, Locale.GERMAN); in test_getDateInstanceILjava_util_Locale()
218 testDateTime(DateFormat.SHORT, DateFormat.SHORT); in test_getDateTimeInstanceII()
219 testDateTime(DateFormat.SHORT, DateFormat.MEDIUM); in test_getDateTimeInstanceII()
220 testDateTime(DateFormat.SHORT, DateFormat.LONG); in test_getDateTimeInstanceII()
221 testDateTime(DateFormat.SHORT, DateFormat.FULL); in test_getDateTimeInstanceII()
223 testDateTime(DateFormat.MEDIUM, DateFormat.SHORT); in test_getDateTimeInstanceII()
[all …]
/libcore/luni/src/test/java/libcore/java/util/
DOldTimeZoneTest.java101 assertEquals("PST", tz.getDisplayName(false, TimeZone.SHORT)); in test_getDisplayNameZI()
116 assertEquals("PDT", tz.getDisplayName(true, TimeZone.SHORT, Locale.US)); in test_getDisplayNameZILjava_util_Locale()
117 assertEquals("PST", tz.getDisplayName(false, TimeZone.SHORT, Locale.US)); in test_getDisplayNameZILjava_util_Locale()
122 assertEquals("GMT-08:00", tz.getDisplayName(false, TimeZone.SHORT, Locale.FRANCE)); in test_getDisplayNameZILjava_util_Locale()
123 assertEquals("GMT-07:00", tz.getDisplayName(true, TimeZone.SHORT, Locale.FRANCE)); in test_getDisplayNameZILjava_util_Locale()
124 assertEquals("GMT-08:00", tz.getDisplayName(false, TimeZone.SHORT, Locale.UK)); in test_getDisplayNameZILjava_util_Locale()
125 assertEquals("GMT-07:00", tz.getDisplayName(true, TimeZone.SHORT, Locale.UK)); in test_getDisplayNameZILjava_util_Locale()
136 assertEquals("GMT+03:30", iranTz.getDisplayName(false, TimeZone.SHORT, Locale.UK)); in test_getDisplayNameZILjava_util_Locale()
137 assertEquals("GMT+04:30", iranTz.getDisplayName(true, TimeZone.SHORT, Locale.UK)); in test_getDisplayNameZILjava_util_Locale()
DTimeZoneTest.java53 assertEquals("GMT+00:01", tz0001.getDisplayName(false, TimeZone.SHORT, Locale.US)); in testCustomTimeZoneDisplayNames()
54 assertEquals("GMT+01:30", tz0130.getDisplayName(false, TimeZone.SHORT, Locale.US)); in testCustomTimeZoneDisplayNames()
55 assertEquals("GMT-01:30", tzMinus0130.getDisplayName(false, TimeZone.SHORT, Locale.US)); in testCustomTimeZoneDisplayNames()
204 String shortDst = tz.getDisplayName(true, TimeZone.SHORT, Locale.US); in testDisplayNames()
205 String shortStd = tz.getDisplayName(false, TimeZone.SHORT, Locale.US); in testDisplayNames()
263 assertEquals("GMT-03:00", tz.getDisplayName(true, TimeZone.SHORT, Locale.US)); in test_getDisplayName_GMT_short_names()
264 assertEquals("GMT-03:00", tz.getDisplayName(false, TimeZone.SHORT, Locale.US)); in test_getDisplayName_GMT_short_names()
/libcore/benchmarks/src/benchmarks/regression/
DExpensiveObjectsBenchmark.java32 DateFormat df = DateFormat.getTimeInstance(DateFormat.SHORT); in timeNewDateFormatTimeInstance()
38 DateFormat df = DateFormat.getTimeInstance(DateFormat.SHORT); in timeClonedDateFormatTimeInstance()
45 DateFormat df = DateFormat.getTimeInstance(DateFormat.SHORT); in timeReusedDateFormatTimeInstance()
DStringBenchmark.java25 SHORT("short"), enumConstant
/libcore/luni/src/main/java/libcore/io/
DSizeOf.java25 public static final int SHORT = 2; field in SizeOf
DNioBufferIterator.java72 position += SizeOf.SHORT; in readShort()
DHeapBufferIterator.java75 position += SizeOf.SHORT; in readShort()
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
DCalendarTest.java804 assertEquals(cal.getDisplayName(field, Calendar.SHORT, in test_getDisplayNameIILjava_util_Locale()
810 assertEquals(cal.getDisplayName(field, Calendar.SHORT, in test_getDisplayNameIILjava_util_Locale()
818 assertEquals(cal.getDisplayName(field, Calendar.SHORT, in test_getDisplayNameIILjava_util_Locale()
824 assertEquals(cal.getDisplayName(field, Calendar.SHORT, in test_getDisplayNameIILjava_util_Locale()
834 assertEquals(cal.getDisplayName(field, Calendar.SHORT, in test_getDisplayNameIILjava_util_Locale()
845 assertEquals(cal.getDisplayName(field, Calendar.SHORT, in test_getDisplayNameIILjava_util_Locale()
854 .getDisplayName(field, Calendar.SHORT, locale)); in test_getDisplayNameIILjava_util_Locale()
863 cal.getDisplayName(-1, Calendar.SHORT, Locale.US); in test_getDisplayNameIILjava_util_Locale()
887 cal.getDisplayName(Calendar.MONTH, Calendar.SHORT, null); in test_getDisplayNameIILjava_util_Locale()
893 cal.getDisplayName(-1, Calendar.SHORT, null); in test_getDisplayNameIILjava_util_Locale()
[all …]
/libcore/luni/src/main/java/java/text/
DDateFormat.java110 public static final int SHORT = 3; field in DateFormat
469 return getDateTimeInstance(SHORT, SHORT); in getInstance()
841 if (!(style == SHORT || style == MEDIUM || style == LONG in checkDateStyle()
848 if (!(style == SHORT || style == MEDIUM || style == LONG in checkTimeStyle()
DDateFormatSymbols.java332 zone[2] = TimeZone.getTimeZone(id).getDisplayName(false, TimeZone.SHORT, locale); in getZoneStrings()
338 zone[4] = TimeZone.getTimeZone(id).getDisplayName(true, TimeZone.SHORT, locale); in getZoneStrings()
501 if (style != TimeZone.SHORT && style != TimeZone.LONG) { in getTimeZoneDisplayName()
DMessageFormat.java998 dateStyle = DateFormat.SHORT; in parseVariable()
1115 } else if (format.equals(DateFormat.getTimeInstance(DateFormat.SHORT, in decodeSimpleDateFormat()
1118 } else if (format.equals(DateFormat.getDateInstance(DateFormat.SHORT, in decodeSimpleDateFormat()
/libcore/luni/src/main/java/java/nio/charset/
DModifiedUtf8.java120 byte[] result = new byte[SizeOf.SHORT + utfCount]; in encode()
122 ModifiedUtf8.encode(result, SizeOf.SHORT, s); in encode()
/libcore/luni/src/test/java/libcore/java/text/
DOldDateFormatTest.java90 DateFormat.SHORT, DateFormat.SHORT, Locale.US); in test_formatLjava_util_Date()
108 DateFormat.SHORT, DateFormat.SHORT, Locale.US); in test_formatLjava_lang_ObjectLjava_lang_StringBufferLjava_text_FieldPosition()
207 … DateFormat format = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, Locale.US); in test_parseLString()
325 format = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.SHORT, Locale.US); in test_parseLString()
DSimpleDateFormatTest.java367 SimpleDateFormat.getDateInstance(DateFormat.SHORT, null); in test_nullLocales()
372 SimpleDateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, null); in test_nullLocales()
377 SimpleDateFormat.getTimeInstance(DateFormat.SHORT, null); in test_nullLocales()
384 DateFormat df = DateFormat.getDateInstance(DateFormat.SHORT, new Locale("sl")); in test_sl_dates()
/libcore/luni/src/main/java/java/io/
DDataOutputStream.java192 out.write(scratch, 0, SizeOf.SHORT); in writeShort()
193 written += SizeOf.SHORT; in writeShort()
DRandomAccessFile.java513 readFully(scratch, 0, SizeOf.SHORT); in readShort()
859 write(scratch, 0, SizeOf.SHORT); in writeShort()
DDataInputStream.java152 Streams.readFully(in, scratch, 0, SizeOf.SHORT); in readShort()
/libcore/luni/src/main/java/java/util/
DCalendar.java695 public static final int SHORT = 1; field in Calendar
1292 style = SHORT; in getDisplayName()
1319 if (style != ALL_STYLES && style != SHORT && style != LONG) { in checkStyle()
1344 if (style == SHORT || style == ALL_STYLES) { in getDisplayNames()
1345 insertValuesInMap(result, getDisplayNameArray(field, SHORT, locale)); in getDisplayNames()
DTimeZone.java77 public static final int SHORT = 0; field in TimeZone
189 if (style != SHORT && style != LONG) { in getDisplayName()
/libcore/luni/src/test/java/libcore/io/
DMemoryTest.java111 int scale = SizeOf.SHORT; in testSetShortArray()
141 assertEquals(expectedValues[i], Memory.peekShort(ptr + SizeOf.SHORT * i, swap)); in assertShortsEqual()
/libcore/luni/src/main/java/libcore/icu/
DLocaleData.java169 case DateFormat.SHORT: in getDateFormat()
183 case DateFormat.SHORT: in getTimeFormat()

12