OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:IntBuffer
(Results
1 - 12
of
12
) sorted by null
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
WrappedIntBufferTest.java
18
import java.nio.
IntBuffer
;
23
buf =
IntBuffer
.wrap(new int[BUFFER_LENGTH]);
41
IntBuffer
.wrap(array, -1, 0);
47
IntBuffer
.wrap(array, 21, 0);
53
IntBuffer
.wrap(array, 0, -1);
59
IntBuffer
.wrap(array, 0, 21);
65
IntBuffer
.wrap(array, Integer.MAX_VALUE, 1);
71
IntBuffer
.wrap(array, 1, Integer.MAX_VALUE);
77
IntBuffer
.wrap((int[])null, -1, 0);
82
IntBuffer
buf = IntBuffer.wrap(array, 2, 16)
[
all
...]
IntBufferTest.java
23
import java.nio.
IntBuffer
;
27
* Tests java.nio.
IntBuffer
37
protected
IntBuffer
buf;
40
buf =
IntBuffer
.allocate(BUFFER_LENGTH);
90
IntBuffer
readonly = buf.asReadOnlyBuffer();
113
IntBuffer
ret = buf.compact();
166
IntBuffer
other =
IntBuffer
.allocate(buf.capacity());
188
IntBuffer
duplicate = buf.duplicate();
217
IntBuffer
readonly = buf.asReadOnlyBuffer()
[
all
...]
/libcore/luni/src/main/java/java/nio/
IntBuffer.java
34
public abstract class
IntBuffer
extends Buffer implements Comparable<
IntBuffer
> {
45
public static
IntBuffer
allocate(int capacity) {
62
public static
IntBuffer
wrap(int[] array) {
84
public static
IntBuffer
wrap(int[] array, int start, int intCount) {
86
IntBuffer
buf = new ReadWriteIntArrayBuffer(array);
92
IntBuffer
(int capacity) {
117
public abstract
IntBuffer
asReadOnlyBuffer();
130
public abstract
IntBuffer
compact();
144
public int compareTo(
IntBuffer
otherBuffer)
[
all
...]
/prebuilt/sdk/10/
android.jar
/prebuilt/sdk/11/
android.jar
/prebuilt/sdk/13/
android.jar
/prebuilt/sdk/4/
android.jar
/prebuilt/sdk/5/
android.jar
/prebuilt/sdk/6/
android.jar
/prebuilt/sdk/7/
android.jar
/prebuilt/sdk/8/
android.jar
/prebuilt/sdk/9/
android.jar
Completed in 7305 milliseconds