/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
D | CollationElementIteratorTest.java | 63 int order = iterator.next(); in testNext() local 65 while (order != CollationElementIterator.NULLORDER) { in testNext() 66 orders[i++] = order; in testNext() 67 order = iterator.next(); in testNext() 74 order = iterator.previous(); in testNext() 76 while (order != CollationElementIterator.NULLORDER) { in testNext() 77 assertEquals(orders[--i], order); in testNext() 78 order = iterator.previous(); in testNext() 90 int order = iterator.next(); in testPrevious() local 92 while (order != CollationElementIterator.NULLORDER) { in testPrevious() [all …]
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/ |
D | ByteBufferTest.java | 142 assertEquals(buf.order(), readonly.order()); in testAsReadOnlyBuffer() 255 assertEquals(buf.order(), duplicate.order()); 486 assertEquals(ByteOrder.BIG_ENDIAN, buf.order()); in testOrder() 488 buf.order(ByteOrder.LITTLE_ENDIAN); in testOrder() 489 assertEquals(ByteOrder.LITTLE_ENDIAN, buf.order()); in testOrder() 491 buf.order(ByteOrder.BIG_ENDIAN); in testOrder() 492 assertEquals(ByteOrder.BIG_ENDIAN, buf.order()); in testOrder() 495 buf.order((ByteOrder)null); in testOrder() 496 assertEquals(ByteOrder.LITTLE_ENDIAN, buf.order()); in testOrder() 498 buf.order(ByteOrder.BIG_ENDIAN); in testOrder() [all …]
|
D | LongBufferTest.java | 96 assertEquals(buf.order(), readonly.order()); in testAsReadOnlyBuffer() 194 assertEquals(buf.order(), duplicate.order()); 390 buf.order(); in testOrder() 391 assertEquals(ByteOrder.nativeOrder(), buf.order()); in testOrder() 581 assertEquals(buf.order(), slice.order()); in testSlice()
|
D | ShortBufferTest.java | 95 assertEquals(buf.order(), readonly.order()); in testAsReadOnlyBuffer() 193 assertEquals(buf.order(), duplicate.order()); 376 buf.order(); in testOrder() 377 assertEquals(ByteOrder.nativeOrder(), buf.order()); in testOrder() 561 assertEquals(buf.order(), slice.order()); in testSlice()
|
D | FloatBufferTest.java | 96 assertEquals(buf.order(), readonly.order()); in testAsReadOnlyBuffer() 214 assertEquals(buf.order(), duplicate.order()); 411 buf.order(); in testOrder() 413 assertEquals(ByteOrder.nativeOrder(), buf.order()); in testOrder() 598 assertEquals(buf.order(), slice.order()); in testSlice()
|
D | IntBufferTest.java | 96 assertEquals(buf.order(), readonly.order()); in testAsReadOnlyBuffer() 194 assertEquals(buf.order(), duplicate.order()); 389 buf.order(); in testOrder() 390 assertEquals(ByteOrder.nativeOrder(), buf.order()); in testOrder() 574 assertEquals(buf.order(), slice.order()); in testSlice()
|
D | DoubleBufferTest.java | 120 assertEquals(buf.order(), readonly.order()); in testAsReadOnlyBuffer() 223 assertEquals(buf.order(), duplicate.order()); 413 assertEquals(ByteOrder.nativeOrder(), buf.order()); in testOrder() 587 assertEquals(buf.order(), slice.order()); in testSlice()
|
D | CharBufferTest.java | 99 assertEquals(buf.order(), readonly.order()); in testAsReadOnlyBuffer() 124 assertEquals(buf.order(), readonly.order()); in testAsReadOnlyBuffer() 227 assertEquals(buf.order(), duplicate.order()); 254 assertEquals(buf.order(), duplicate.order()); 630 assertEquals(buf.order(), slice.order()); in testSlice() 1075 assertEquals(ByteOrder.nativeOrder(), buf.order()); in testOrder()
|
D | DirectFloatBufferTest.java | 77 assertEquals(ByteOrder.BIG_ENDIAN, buf.order()); in testOrder()
|
D | DirectDoubleBufferTest.java | 76 assertEquals(ByteOrder.BIG_ENDIAN, buf.order()); in testOrder()
|
/libcore/luni/src/test/java/libcore/java/nio/ |
D | BufferTest.java | 135 b.order(ByteOrder.BIG_ENDIAN).asCharBuffer().get(chars, 1, 4); in testByteSwappedBulkGet() 137 b.order(ByteOrder.LITTLE_ENDIAN).asCharBuffer().get(chars, 1, 4); in testByteSwappedBulkGet() 141 b.order(ByteOrder.BIG_ENDIAN).asDoubleBuffer().get(doubles, 1, 1); in testByteSwappedBulkGet() 145 b.order(ByteOrder.LITTLE_ENDIAN).asDoubleBuffer().get(doubles, 1, 1); in testByteSwappedBulkGet() 151 b.order(ByteOrder.BIG_ENDIAN).asFloatBuffer().get(floats, 1, 2); in testByteSwappedBulkGet() 156 b.order(ByteOrder.LITTLE_ENDIAN).asFloatBuffer().get(floats, 1, 2); in testByteSwappedBulkGet() 163 b.order(ByteOrder.BIG_ENDIAN).asIntBuffer().get(ints, 1, 2); in testByteSwappedBulkGet() 168 b.order(ByteOrder.LITTLE_ENDIAN).asIntBuffer().get(ints, 1, 2); in testByteSwappedBulkGet() 175 b.order(ByteOrder.BIG_ENDIAN).asLongBuffer().get(longs, 1, 1); in testByteSwappedBulkGet() 179 b.order(ByteOrder.LITTLE_ENDIAN).asLongBuffer().get(longs, 1, 1); in testByteSwappedBulkGet() [all …]
|
D | OldAndroidNIOTest.java | 75 b.order(ByteOrder.LITTLE_ENDIAN); in byteBufferTest() 77 assertEquals(ByteOrder.BIG_ENDIAN, dupe.order()); in byteBufferTest() 78 b.order(ByteOrder.BIG_ENDIAN); in byteBufferTest() 153 b.order(ByteOrder.LITTLE_ENDIAN); in byteBufferTest() 174 b.order(ByteOrder.BIG_ENDIAN); in byteBufferTest() 224 b.order(ByteOrder.LITTLE_ENDIAN); in byteBufferTest() 239 b.order(ByteOrder.BIG_ENDIAN); in byteBufferTest() 255 b.order(ByteOrder.LITTLE_ENDIAN); in byteBufferTest() 267 b.order(ByteOrder.BIG_ENDIAN); in byteBufferTest() 280 b.order(ByteOrder.LITTLE_ENDIAN); in byteBufferTest() [all …]
|
D | OldDirectShortBufferTest.java | 30 byteBuffer.order(ByteOrder.nativeOrder()); in testPutWhenOffsetIsNonZero()
|
D | OldDirectIntBufferTest.java | 30 byteBuffer.order(ByteOrder.nativeOrder()); in testPutWhenOffsetIsNonZero()
|
/libcore/ojluni/src/main/java/java/text/ |
D | CollationElementIterator.java | 169 public final static int primaryOrder(int order) { in primaryOrder() argument 170 return android.icu.text.CollationElementIterator.primaryOrder(order); in primaryOrder() 179 public final static short secondaryOrder(int order) { in secondaryOrder() argument 180 return (short) android.icu.text.CollationElementIterator.secondaryOrder(order); in secondaryOrder() 189 public final static short tertiaryOrder(int order) { in tertiaryOrder() argument 190 return (short) android.icu.text.CollationElementIterator.tertiaryOrder(order); in tertiaryOrder() 239 public int getMaxExpansion(int order) { in getMaxExpansion() argument 240 return icuIterator.getMaxExpansion(order); in getMaxExpansion()
|
/libcore/ojluni/src/main/java/java/nio/ |
D | ByteBufferAsDoubleBuffer.java | 35 private final ByteOrder order; field in ByteBufferAsDoubleBuffer 39 int off, ByteOrder order) { in ByteBufferAsDoubleBuffer() argument 53 this.order = order; in ByteBufferAsDoubleBuffer() 64 return new ByteBufferAsDoubleBuffer(bb, -1, 0, rem, rem, off, order); in slice() 74 order); in duplicate() 84 order); in asReadOnlyBuffer() 157 public ByteOrder order() { in order() method in ByteBufferAsDoubleBuffer 158 return order; in order()
|
D | ByteBufferAsShortBuffer.java | 34 private final ByteOrder order; field in ByteBufferAsShortBuffer 38 int off, ByteOrder order) { in ByteBufferAsShortBuffer() argument 52 this.order = order; in ByteBufferAsShortBuffer() 63 return new ByteBufferAsShortBuffer(bb, -1, 0, rem, rem, off, order); in slice() 72 offset, order); in duplicate() 81 offset, order); in asReadOnlyBuffer() 155 public ByteOrder order() { in order() method in ByteBufferAsShortBuffer 156 return order; in order()
|
D | ByteBufferAsFloatBuffer.java | 34 private final ByteOrder order; field in ByteBufferAsFloatBuffer 38 int off, ByteOrder order) { in ByteBufferAsFloatBuffer() argument 52 this.order = order; in ByteBufferAsFloatBuffer() 63 return new ByteBufferAsFloatBuffer(bb, -1, 0, rem, rem, off, order); in slice() 73 order); in duplicate() 83 order); in asReadOnlyBuffer() 156 public ByteOrder order() { in order() method in ByteBufferAsFloatBuffer 157 return order; in order()
|
D | ByteBufferAsIntBuffer.java | 34 private final ByteOrder order; field in ByteBufferAsIntBuffer 38 int off, ByteOrder order) { in ByteBufferAsIntBuffer() argument 52 this.order = order; in ByteBufferAsIntBuffer() 63 return new ByteBufferAsIntBuffer(bb, -1, 0, rem, rem, off, order); in slice() 73 order); in duplicate() 83 order); in asReadOnlyBuffer() 156 public ByteOrder order() { in order() method in ByteBufferAsIntBuffer 157 return order; in order()
|
D | ByteBufferAsLongBuffer.java | 34 private final ByteOrder order; field in ByteBufferAsLongBuffer 38 int off, ByteOrder order) { in ByteBufferAsLongBuffer() argument 52 this.order = order; in ByteBufferAsLongBuffer() 63 return new ByteBufferAsLongBuffer(bb, -1, 0, rem, rem, off, order); in slice() 73 order); in duplicate() 83 order); in asReadOnlyBuffer() 156 public ByteOrder order() { in order() method in ByteBufferAsLongBuffer 157 return order; in order()
|
D | ByteBufferAsCharBuffer.java | 34 private final ByteOrder order; field in ByteBufferAsCharBuffer 38 int off, ByteOrder order) { in ByteBufferAsCharBuffer() argument 52 this.order = order; in ByteBufferAsCharBuffer() 63 return new ByteBufferAsCharBuffer(bb, -1, 0, rem, rem, off, order); in slice() 73 order); in duplicate() 83 order); in asReadOnlyBuffer() 194 order); in subSequence() 197 public ByteOrder order() { in order() method in ByteBufferAsCharBuffer 198 return order; in order()
|
D | HeapByteBuffer.java | 237 order())); in asCharBuffer() 289 order()); in asShortBuffer() 342 order())); in asIntBuffer() 394 order())); in asLongBuffer() 446 order())); in asFloatBuffer() 498 order())); in asDoubleBuffer()
|
/libcore/luni/src/main/java/libcore/io/ |
D | Memory.java | 45 public static int peekInt(byte[] src, int offset, ByteOrder order) { in peekInt() argument 46 if (order == ByteOrder.BIG_ENDIAN) { in peekInt() 59 public static long peekLong(byte[] src, int offset, ByteOrder order) { in peekLong() argument 60 if (order == ByteOrder.BIG_ENDIAN) { in peekLong() 83 public static short peekShort(byte[] src, int offset, ByteOrder order) { in peekShort() argument 84 if (order == ByteOrder.BIG_ENDIAN) { in peekShort() 91 public static void pokeInt(byte[] dst, int offset, int value, ByteOrder order) { in pokeInt() argument 92 if (order == ByteOrder.BIG_ENDIAN) { in pokeInt() 105 public static void pokeLong(byte[] dst, int offset, long value, ByteOrder order) { in pokeLong() argument 106 if (order == ByteOrder.BIG_ENDIAN) { in pokeLong() [all …]
|
/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/ddmc/ |
D | ChunkHandler.java | 66 out.order(ChunkHandler.CHUNK_ORDER); in createFailChunk() 81 in.order(CHUNK_ORDER); in wrapChunk()
|
/libcore/tzdata/tools/ |
D | tzupdate.properties | 3 # This should be the tzdata version. e.g. "2015a". Lexicographical sort order
|