Home
last modified time | relevance | path

Searched defs:get (Results 1 – 25 of 114) sorted by relevance

12345

/libcore/luni/src/main/java/java/io/
DEmulatedFieldsForLoading.java98 public byte get(String name, byte defaultValue) throws IOException, in get() method in EmulatedFieldsForLoading
121 public char get(String name, char defaultValue) throws IOException, in get() method in EmulatedFieldsForLoading
144 public double get(String name, double defaultValue) throws IOException, in get() method in EmulatedFieldsForLoading
167 public float get(String name, float defaultValue) throws IOException, in get() method in EmulatedFieldsForLoading
190 public int get(String name, int defaultValue) throws IOException, in get() method in EmulatedFieldsForLoading
213 public long get(String name, long defaultValue) throws IOException, in get() method in EmulatedFieldsForLoading
236 public Object get(String name, Object defaultValue) throws IOException, in get() method in EmulatedFieldsForLoading
259 public short get(String name, short defaultValue) throws IOException, in get() method in EmulatedFieldsForLoading
283 public boolean get(String name, boolean defaultValue) throws IOException, in get() method in EmulatedFieldsForLoading
DEmulatedFields.java208 public byte get(String name, byte defaultValue) throws IllegalArgumentException { in get() method in EmulatedFields
228 public char get(String name, char defaultValue) throws IllegalArgumentException { in get() method in EmulatedFields
248 public double get(String name, double defaultValue) throws IllegalArgumentException { in get() method in EmulatedFields
268 public float get(String name, float defaultValue) throws IllegalArgumentException { in get() method in EmulatedFields
288 public int get(String name, int defaultValue) throws IllegalArgumentException { in get() method in EmulatedFields
308 public long get(String name, long defaultValue) throws IllegalArgumentException { in get() method in EmulatedFields
328 public Object get(String name, Object defaultValue) throws IllegalArgumentException { in get() method in EmulatedFields
348 public short get(String name, short defaultValue) throws IllegalArgumentException { in get() method in EmulatedFields
368 public boolean get(String name, boolean defaultValue) throws IllegalArgumentException { in get() method in EmulatedFields
/libcore/luni/src/main/java/java/util/concurrent/
DFuture.java122 V get() throws InterruptedException, ExecutionException; in get() method
138 V get(long timeout, TimeUnit unit) in get() method
/libcore/luni/src/main/java/java/nio/
DByteBufferAsIntBuffer.java86 public int get() { in get() method in ByteBufferAsIntBuffer
94 public int get(int index) { in get() method in ByteBufferAsIntBuffer
100 public IntBuffer get(int[] dst, int dstOffset, int intCount) { in get() method in ByteBufferAsIntBuffer
DByteBufferAsDoubleBuffer.java86 public double get() { in get() method in ByteBufferAsDoubleBuffer
94 public double get(int index) { in get() method in ByteBufferAsDoubleBuffer
100 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { in get() method in ByteBufferAsDoubleBuffer
DByteBufferAsLongBuffer.java86 public long get() { in get() method in ByteBufferAsLongBuffer
94 public long get(int index) { in get() method in ByteBufferAsLongBuffer
100 public LongBuffer get(long[] dst, int dstOffset, int longCount) { in get() method in ByteBufferAsLongBuffer
DByteBufferAsShortBuffer.java85 public short get() { in get() method in ByteBufferAsShortBuffer
93 public short get(int index) { in get() method in ByteBufferAsShortBuffer
99 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { in get() method in ByteBufferAsShortBuffer
DByteBufferAsFloatBuffer.java85 public float get() { in get() method in ByteBufferAsFloatBuffer
93 public float get(int index) { in get() method in ByteBufferAsFloatBuffer
99 public FloatBuffer get(float[] dst, int dstOffset, int floatCount) { in get() method in ByteBufferAsFloatBuffer
DFloatArrayBuffer.java99 @Override public final float get() { in get() method in FloatArrayBuffer
106 @Override public final float get(int index) { in get() method in FloatArrayBuffer
111 @Override public final FloatBuffer get(float[] dst, int dstOffset, int floatCount) { in get() method in FloatArrayBuffer
DLongArrayBuffer.java98 @Override public final long get() { in get() method in LongArrayBuffer
105 @Override public final long get(int index) { in get() method in LongArrayBuffer
110 @Override public final LongBuffer get(long[] dst, int dstOffset, int longCount) { in get() method in LongArrayBuffer
DIntArrayBuffer.java98 @Override public final int get() { in get() method in IntArrayBuffer
105 @Override public final int get(int index) { in get() method in IntArrayBuffer
110 @Override public final IntBuffer get(int[] dst, int dstOffset, int intCount) { in get() method in IntArrayBuffer
DDoubleArrayBuffer.java98 @Override public final double get() { in get() method in DoubleArrayBuffer
105 @Override public final double get(int index) { in get() method in DoubleArrayBuffer
110 @Override public final DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { in get() method in DoubleArrayBuffer
DCharSequenceAdapter.java65 public char get() { in get() method in CharSequenceAdapter
73 public char get(int index) { in get() method in CharSequenceAdapter
79 public final CharBuffer get(char[] dst, int dstOffset, int charCount) { in get() method in CharSequenceAdapter
DShortArrayBuffer.java98 @Override public final short get() { in get() method in ShortArrayBuffer
105 @Override public final short get(int index) { in get() method in ShortArrayBuffer
110 @Override public final ShortBuffer get(short[] dst, int dstOffset, int shortCount) { in get() method in ShortArrayBuffer
DByteBufferAsCharBuffer.java86 public char get() { in get() method in ByteBufferAsCharBuffer
94 public char get(int index) { in get() method in ByteBufferAsCharBuffer
100 public CharBuffer get(char[] dst, int dstOffset, int charCount) { in get() method in ByteBufferAsCharBuffer
DDoubleBuffer.java229 public abstract double get(); in get() method in DoubleBuffer
244 public DoubleBuffer get(double[] dst) { in get() method in DoubleBuffer
267 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { in get() method in DoubleBuffer
287 public abstract double get(int index); in get() method in DoubleBuffer
DLongBuffer.java218 public abstract long get(); in get() method in LongBuffer
233 public LongBuffer get(long[] dst) { in get() method in LongBuffer
256 public LongBuffer get(long[] dst, int dstOffset, int longCount) { in get() method in LongBuffer
276 public abstract long get(int index); in get() method in LongBuffer
DFloatBuffer.java230 public abstract float get(); in get() method in FloatBuffer
245 public FloatBuffer get(float[] dst) { in get() method in FloatBuffer
268 public FloatBuffer get(float[] dst, int dstOffset, int floatCount) { in get() method in FloatBuffer
288 public abstract float get(int index); in get() method in FloatBuffer
DShortBuffer.java219 public abstract short get(); in get() method in ShortBuffer
234 public ShortBuffer get(short[] dst) { in get() method in ShortBuffer
257 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { in get() method in ShortBuffer
277 public abstract short get(int index); in get() method in ShortBuffer
DIntBuffer.java216 public abstract int get(); in get() method in IntBuffer
231 public IntBuffer get(int[] dst) { in get() method in IntBuffer
254 public IntBuffer get(int[] dst, int dstOffset, int intCount) { in get() method in IntBuffer
274 public abstract int get(int index); in get() method in IntBuffer
DByteArrayBuffer.java107 @Override public final ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { in get() method in ByteArrayBuffer
114 final void get(char[] dst, int dstOffset, int charCount) { in get() method in ByteArrayBuffer
120 final void get(double[] dst, int dstOffset, int doubleCount) { in get() method in ByteArrayBuffer
126 final void get(float[] dst, int dstOffset, int floatCount) { in get() method in ByteArrayBuffer
132 final void get(int[] dst, int dstOffset, int intCount) { in get() method in ByteArrayBuffer
138 final void get(long[] dst, int dstOffset, int longCount) { in get() method in ByteArrayBuffer
144 final void get(short[] dst, int dstOffset, int shortCount) { in get() method in ByteArrayBuffer
150 @Override public final byte get() { in get() method in ByteArrayBuffer
157 @Override public final byte get(int index) { in get() method in ByteArrayBuffer
DDirectByteBuffer.java111 @Override public final ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { in get() method in DirectByteBuffer
119 final void get(char[] dst, int dstOffset, int charCount) { in get() method in DirectByteBuffer
126 final void get(double[] dst, int dstOffset, int doubleCount) { in get() method in DirectByteBuffer
133 final void get(float[] dst, int dstOffset, int floatCount) { in get() method in DirectByteBuffer
140 final void get(int[] dst, int dstOffset, int intCount) { in get() method in DirectByteBuffer
147 final void get(long[] dst, int dstOffset, int longCount) { in get() method in DirectByteBuffer
154 final void get(short[] dst, int dstOffset, int shortCount) { in get() method in DirectByteBuffer
161 @Override public final byte get() { in get() method in DirectByteBuffer
169 @Override public final byte get(int index) { in get() method in DirectByteBuffer
DCharArrayBuffer.java98 @Override public final char get() { in get() method in CharArrayBuffer
105 @Override public final char get(int index) { in get() method in CharArrayBuffer
110 @Override public final CharBuffer get(char[] dst, int srcOffset, int charCount) { in get() method in CharArrayBuffer
/libcore/luni/src/main/java/java/lang/ref/
DPhantomReference.java70 public T get() { in get() method in PhantomReference
/libcore/luni/src/main/java/java/util/
DCollections.java80 @Override public E get(int location) { in get() method in Collections.CopiesList
101 @Override public Object get(int location) { in get() method in Collections.EmptyList
147 @Override public Object get(Object key) { in get() method in Collections.EmptyMap
275 @Override public E get(int location) { in get() method in SingletonList
307 @Override public V get(Object key) { in get() method in SingletonMap

12345