Home
last modified time | relevance | path

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

12345678910>>...12

/libcore/ojluni/src/main/java/java/nio/file/
DPaths.java83 public static Path get(String first, String... more) { in get() method in Paths
131 public static Path get(URI uri) { in get() method in Paths
/libcore/ojluni/src/main/java/java/util/concurrent/
DFuture.java152 V get() throws InterruptedException, ExecutionException; in get() method
168 V get(long timeout, TimeUnit unit) in get() method
/libcore/luni/src/main/native/
DScopedBytes.h73 const jbyte* get() const { in get() function
81 jbyte* get() { in get() function
/libcore/ojluni/src/main/java/sun/nio/ch/
DCompletedFuture.java67 public V get() throws ExecutionException { in get() method in CompletedFuture
74 public V get(long timeout, TimeUnit unit) throws ExecutionException { in get() method in CompletedFuture
/libcore/ojluni/src/main/java/java/util/function/
DSupplier.java48 T get(); in get() method
/libcore/ojluni/annotations/hiddenapi/sun/nio/fs/
DBasicFileAttributesHolder.java32 public java.nio.file.attribute.BasicFileAttributes get(); in get() method
/libcore/ojluni/src/main/java/sun/nio/fs/
DBasicFileAttributesHolder.java40 BasicFileAttributes get(); in get() method
/libcore/ojluni/annotations/hiddenapi/java/io/
DObjectInputStream.java598 public abstract boolean get(java.lang.String name, boolean val) throws java.io.IOException; in get() method in ObjectInputStream.GetField
600 public abstract byte get(java.lang.String name, byte val) throws java.io.IOException; in get() method in ObjectInputStream.GetField
602 public abstract char get(java.lang.String name, char val) throws java.io.IOException; in get() method in ObjectInputStream.GetField
604 public abstract short get(java.lang.String name, short val) throws java.io.IOException; in get() method in ObjectInputStream.GetField
606 public abstract int get(java.lang.String name, int val) throws java.io.IOException; in get() method in ObjectInputStream.GetField
608 public abstract long get(java.lang.String name, long val) throws java.io.IOException; in get() method in ObjectInputStream.GetField
610 public abstract float get(java.lang.String name, float val) throws java.io.IOException; in get() method in ObjectInputStream.GetField
612 public abstract double get(java.lang.String name, double val) throws java.io.IOException; in get() method in ObjectInputStream.GetField
614 public abstract java.lang.Object get(java.lang.String name, java.lang.Object val) in get() method in ObjectInputStream.GetField
633 public boolean get(java.lang.String name, boolean val) throws java.io.IOException { in get() method in ObjectInputStream.GetFieldImpl
[all …]
/libcore/ojluni/src/main/java/java/lang/ref/
DPhantomReference.java62 public T get() { in get() method in PhantomReference
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
DJarFileFactory.java70 public JarFile get(URL url) throws IOException { in get() method in JarFileFactory
74 JarFile get(URL url, boolean useCaches) throws IOException { in get() method in JarFileFactory
/libcore/ojluni/src/main/java/java/nio/
DByteBufferAsFloatBuffer.java91 public float get() { in get() method in ByteBufferAsFloatBuffer
95 public float get(int i) { in get() method in ByteBufferAsFloatBuffer
99 public FloatBuffer get(float[] dst, int offset, int length) { in get() method in ByteBufferAsFloatBuffer
DByteBufferAsLongBuffer.java91 public long get() { in get() method in ByteBufferAsLongBuffer
95 public long get(int i) { in get() method in ByteBufferAsLongBuffer
99 public LongBuffer get(long[] dst, int offset, int length) { in get() method in ByteBufferAsLongBuffer
DByteBufferAsIntBuffer.java91 public int get() { in get() method in ByteBufferAsIntBuffer
95 public int get(int i) { in get() method in ByteBufferAsIntBuffer
99 public IntBuffer get(int[] dst, int offset, int length) { in get() method in ByteBufferAsIntBuffer
DByteBufferAsShortBuffer.java89 public short get() { in get() method in ByteBufferAsShortBuffer
93 public short get(int i) { in get() method in ByteBufferAsShortBuffer
98 public ShortBuffer get(short[] dst, int offset, int length) { in get() method in ByteBufferAsShortBuffer
DByteBufferAsDoubleBuffer.java92 public double get() { in get() method in ByteBufferAsDoubleBuffer
96 public double get(int i) { in get() method in ByteBufferAsDoubleBuffer
100 public DoubleBuffer get(double[] dst, int offset, int length) { in get() method in ByteBufferAsDoubleBuffer
DShortBuffer.java278 public abstract short get(); in get() method in ShortBuffer
312 public abstract short get(int index); in get() method in ShortBuffer
390 public ShortBuffer get(short[] dst, int offset, int length) { in get() method in ShortBuffer
419 public ShortBuffer get(short[] dst) { in get() method in ShortBuffer
DFloatBuffer.java278 public abstract float get(); in get() method in FloatBuffer
312 public abstract float get(int index); in get() method in FloatBuffer
390 public FloatBuffer get(float[] dst, int offset, int length) { in get() method in FloatBuffer
419 public FloatBuffer get(float[] dst) { in get() method in FloatBuffer
DIntBuffer.java279 public abstract int get(); in get() method in IntBuffer
313 public abstract int get(int index); in get() method in IntBuffer
391 public IntBuffer get(int[] dst, int offset, int length) { in get() method in IntBuffer
420 public IntBuffer get(int[] dst) { in get() method in IntBuffer
DDoubleBuffer.java278 public abstract double get(); in get() method in DoubleBuffer
312 public abstract double get(int index); in get() method in DoubleBuffer
390 public DoubleBuffer get(double[] dst, int offset, int length) { in get() method in DoubleBuffer
419 public DoubleBuffer get(double[] dst) { in get() method in DoubleBuffer
DLongBuffer.java278 public abstract long get(); in get() method in LongBuffer
312 public abstract long get(int index); in get() method in LongBuffer
390 public LongBuffer get(long[] dst, int offset, int length) { in get() method in LongBuffer
419 public LongBuffer get(long[] dst) { in get() method in LongBuffer
DHeapShortBuffer.java109 public short get() { in get() method in HeapShortBuffer
113 public short get(int i) { in get() method in HeapShortBuffer
117 public ShortBuffer get(short[] dst, int offset, int length) { in get() method in HeapShortBuffer
DHeapDoubleBuffer.java109 public double get() { in get() method in HeapDoubleBuffer
113 public double get(int i) { in get() method in HeapDoubleBuffer
117 public DoubleBuffer get(double[] dst, int offset, int length) { in get() method in HeapDoubleBuffer
/libcore/ojluni/src/main/java/java/util/stream/
DFindOps.java192 public Optional<T> get() { in get() method in FindOps.FindSink.OfRef
207 public OptionalInt get() { in get() method in FindOps.FindSink.OfInt
222 public OptionalLong get() { in get() method in FindOps.FindSink.OfLong
237 public OptionalDouble get() { in get() method in FindOps.FindSink.OfDouble
/libcore/ojluni/src/main/native/
Dsocket_tagger_util.cpp38 jmethodID get = env->GetStaticMethodID(socketTaggerClass, in tagSocket() local
/libcore/ojluni/src/main/java/java/time/temporal/
DTemporalAmount.java117 long get(TemporalUnit unit); in get() method

12345678910>>...12