Searched defs:order (Results 1 - 25 of 30) sorted by last modified time

12

/libcore/luni/src/main/java/java/nio/
H A DByteBuffer.java39 * The byte order of this buffer, default is {@code BIG_ENDIAN}.
41 ByteOrder order = ByteOrder.BIG_ENDIAN; field in class:ByteBuffer
159 * buffer's read-only property and byte order are the same as this buffer's.
174 * buffer's read-only property and byte order are the same as this buffer's.
189 * buffer's read-only property and byte order are the same as this buffer's.
204 * buffer's read-only property and byte order are the same as this buffer's.
219 * buffer's read-only property and byte order are the same as this buffer's.
249 * buffer's read-only property and byte order are the same as this buffer's.
311 * byte order is not preserved in the duplicate, and is instead set to
422 * according to the current byte order an
649 public final ByteOrder order() { method in class:ByteBuffer
662 public final ByteBuffer order(ByteOrder byteOrder) { method in class:ByteBuffer
[all...]
H A DByteBufferAsCharBuffer.java40 slice.order(byteBuffer.order());
56 buf.byteBuffer.order = byteBuffer.order;
77 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order());
123 public ByteOrder order() { method in class:ByteBufferAsCharBuffer
124 return byteBuffer.order();
172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
[all...]
H A DByteBufferAsDoubleBuffer.java40 slice.order(byteBuffer.order());
56 buf.byteBuffer.order = byteBuffer.order;
77 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order());
123 public ByteOrder order() { method in class:ByteBufferAsDoubleBuffer
124 return byteBuffer.order();
172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
[all...]
H A DByteBufferAsFloatBuffer.java39 slice.order(byteBuffer.order());
55 buf.byteBuffer.order = byteBuffer.order;
76 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order());
122 public ByteOrder order() { method in class:ByteBufferAsFloatBuffer
123 return byteBuffer.order();
171 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
[all...]
H A DByteBufferAsIntBuffer.java40 slice.order(byteBuffer.order());
56 buf.byteBuffer.order = byteBuffer.order;
77 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order());
123 public ByteOrder order() { method in class:ByteBufferAsIntBuffer
124 return byteBuffer.order();
172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
[all...]
H A DByteBufferAsLongBuffer.java40 slice.order(byteBuffer.order());
56 buf.byteBuffer.order = byteBuffer.order;
77 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order());
123 public ByteOrder order() { method in class:ByteBufferAsLongBuffer
124 return byteBuffer.order();
172 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
[all...]
H A DByteBufferAsShortBuffer.java39 slice.order(byteBuffer.order());
55 buf.byteBuffer.order = byteBuffer.order;
76 ByteBuffer bb = byteBuffer.duplicate().order(byteBuffer.order());
122 public ByteOrder order() { method in class:ByteBufferAsShortBuffer
123 return byteBuffer.order();
171 ByteBuffer bb = byteBuffer.slice().order(byteBuffer.order());
[all...]
H A DCharArrayBuffer.java123 @Override public final ByteOrder order() { method in class:CharArrayBuffer
H A DCharBuffer.java227 * byte order are the same as this buffer's, too.
377 * Returns the byte order used by this buffer when converting chars from/to
381 * the platform's native byte order.
383 * @return the byte order used by this buffer when converting chars from/to
386 public abstract ByteOrder order(); method in class:CharBuffer
585 * mark is cleared. The new buffer's read-only property and byte order are
600 * The new buffer's read-only property and byte order are the same as this
H A DCharSequenceAdapter.java101 public ByteOrder order() { method in class:CharSequenceAdapter
H A DDoubleArrayBuffer.java123 @Override public final ByteOrder order() { method in class:DoubleArrayBuffer
H A DDoubleBuffer.java173 * order are the same as this buffer's, too.
324 * Returns the byte order used by this buffer when converting doubles
328 * the platform's native byte order.
330 * @return the byte order used by this buffer when converting doubles
333 public abstract ByteOrder order(); method in class:DoubleBuffer
475 * mark is cleared. The new buffer's read-only property and byte order are
H A DFloatArrayBuffer.java124 @Override public final ByteOrder order() { method in class:FloatArrayBuffer
H A DFloatBuffer.java173 * as this buffer. The duplicated buffer's read-only property and byte order
323 * Returns the byte order used by this buffer when converting floats from/to
327 * platform's native byte order.
329 * @return the byte order used by this buffer when converting floats from/to
332 public abstract ByteOrder order(); method in class:FloatBuffer
474 * mark is cleared. The new buffer's read-only property and byte order are
H A DIntArrayBuffer.java123 @Override public final ByteOrder order() { method in class:IntArrayBuffer
H A DIntBuffer.java167 * as this buffer. The duplicated buffer's read-only property and byte order
309 * Returns the byte order used by this buffer when converting ints from/to
313 * platform's native byte order.
315 * @return the byte order used by this buffer when converting ints from/to
318 public abstract ByteOrder order(); method in class:IntBuffer
463 * mark is cleared. The new buffer's read-only property and byte order are
H A DLongArrayBuffer.java123 @Override public final ByteOrder order() { method in class:LongArrayBuffer
H A DLongBuffer.java169 * as this buffer. The duplicated buffer's read-only property and byte order
313 * Returns the byte order used by this buffer when converting longs from/to
317 * platform's native byte order.
319 * @return the byte order used by this buffer when converting longs from/to
322 public abstract ByteOrder order(); method in class:LongBuffer
464 * mark is cleared. The new buffer's read-only property and byte order are
H A DMemoryBlock.java233 public final void pokeShort(int offset, short value, ByteOrder order) { argument
234 Memory.pokeShort(address + offset, value, order.needsSwap);
237 public final short peekShort(int offset, ByteOrder order) { argument
238 return Memory.peekShort(address + offset, order.needsSwap);
241 public final void pokeInt(int offset, int value, ByteOrder order) { argument
242 Memory.pokeInt(address + offset, value, order.needsSwap);
245 public final int peekInt(int offset, ByteOrder order) { argument
246 return Memory.peekInt(address + offset, order.needsSwap);
249 public final void pokeLong(int offset, long value, ByteOrder order) { argument
250 Memory.pokeLong(address + offset, value, order
253 peekLong(int offset, ByteOrder order) argument
[all...]
H A DShortArrayBuffer.java123 @Override public final ByteOrder order() { method in class:ShortArrayBuffer
H A DShortBuffer.java169 * as this buffer. The duplicated buffer's read-only property and byte order
312 * Returns the byte order used by this buffer when converting shorts from/to
316 * platform's native byte order.
318 * @return the byte order used by this buffer when converting shorts from/to
321 public abstract ByteOrder order(); method in class:ShortBuffer
463 * mark is cleared. The new buffer's read-only property and byte order are
/libcore/luni/src/main/java/java/security/spec/
H A DECParameterSpec.java31 private final BigInteger order; field in class:ECParameterSpec
39 * the base point, the order of the generator (or base point) and the
46 * @param order
47 * the order of the generator.
51 * if {@code order <= zero} or {@code cofactor <= zero}.
54 BigInteger order, int cofactor) {
57 this.order = order;
59 // throw NullPointerException if curve, generator or order is null
66 if (this.order
53 ECParameterSpec(EllipticCurve curve, ECPoint generator, BigInteger order, int cofactor) argument
[all...]
/libcore/luni/src/main/java/java/text/
H A DCollationElementIterator.java73 * @param order
78 public int getMaxExpansion(int order) { argument
79 return this.icuIterator.getMaxExpansion(order);
122 * Returns the primary order of the specified collation element, i.e. the
125 * @param order
128 public static final int primaryOrder(int order) { argument
129 return CollationElementIteratorICU.primaryOrder(order);
146 * Returns the secondary order of the specified collation element, i.e. the
149 * @param order
152 public static final short secondaryOrder(int order) { argument
211 tertiaryOrder(int order) argument
[all...]
/libcore/luni/src/main/java/libcore/icu/
H A DCollationElementIteratorICU.java73 * specified comparison order.
74 * @param order collation order returned by previous or next.
80 public int getMaxExpansion(int order) { argument
81 return NativeCollation.getMaxExpansion(address, order);
119 * Gets the primary order of a collation order.
120 * @param order the collation order
121 * @return the primary order o
124 primaryOrder(int order) argument
135 secondaryOrder(int order) argument
145 tertiaryOrder(int order) argument
[all...]
H A DNativeCollation.java41 public static native int getMaxExpansion(long address, int order); argument

Completed in 110 milliseconds

12