HomeSort by relevance Sort by last modified time
    Searched defs:get (Results 1101 - 1125 of 2528) sorted by null

<<41424344454647484950>>

  /libcore/luni/src/main/java/java/nio/
ByteBufferAsIntBuffer.java 87 public int get() { method in class:ByteBufferAsIntBuffer
95 public int get(int index) { method in class:ByteBufferAsIntBuffer
101 public IntBuffer get(int[] dst, int dstOffset, int intCount) { method in class:ByteBufferAsIntBuffer
105 ((DirectByteBuffer) byteBuffer).get(dst, dstOffset, intCount); method
107 ((ByteArrayBuffer) byteBuffer).get(dst, dstOffset, intCount); method
ByteBufferAsLongBuffer.java 87 public long get() { method in class:ByteBufferAsLongBuffer
95 public long get(int index) { method in class:ByteBufferAsLongBuffer
101 public LongBuffer get(long[] dst, int dstOffset, int longCount) { method in class:ByteBufferAsLongBuffer
105 ((DirectByteBuffer) byteBuffer).get(dst, dstOffset, longCount); method
107 ((ByteArrayBuffer) byteBuffer).get(dst, dstOffset, longCount); method
ByteBufferAsShortBuffer.java 86 public short get() { method in class:ByteBufferAsShortBuffer
94 public short get(int index) { method in class:ByteBufferAsShortBuffer
100 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { method in class:ByteBufferAsShortBuffer
104 ((DirectByteBuffer) byteBuffer).get(dst, dstOffset, shortCount); method
106 ((ByteArrayBuffer) byteBuffer).get(dst, dstOffset, shortCount); method
CharSequenceAdapter.java 65 public char get() { method in class:CharSequenceAdapter
73 public char get(int index) { method in class:CharSequenceAdapter
79 public final CharBuffer get(char[] dst, int dstOffset, int charCount) { method in class:CharSequenceAdapter
FloatBuffer.java 155 thisFloat = get(thisPos);
156 otherFloat = otherBuffer.get(otherPos);
214 float a = get(myPosition++);
215 float b = otherBuffer.get(otherPosition++);
230 public abstract float get(); method in class:FloatBuffer
237 * {@code get(dst, 0, dst.length)}.
245 public FloatBuffer get(float[] dst) { method in class:FloatBuffer
246 return get(dst, 0, dst.length);
268 public FloatBuffer get(float[] dst, int dstOffset, int floatCount) { method in class:FloatBuffer
274 dst[i] = get();
288 public abstract float get(int index); method in class:FloatBuffer
    [all...]
IntBuffer.java 151 thisInt = get(thisPos);
152 otherInt = otherBuffer.get(otherPos);
203 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
216 public abstract int get(); method in class:IntBuffer
223 * {@code get(dst, 0, dst.length)}.
231 public IntBuffer get(int[] dst) { method in class:IntBuffer
232 return get(dst, 0, dst.length);
254 public IntBuffer get(int[] dst, int dstOffset, int intCount) { method in class:IntBuffer
260 dst[i] = get();
274 public abstract int get(int index); method in class:IntBuffer
    [all...]
LongBuffer.java 153 thisLong = get(thisPos);
154 otherLong = otherBuffer.get(otherPos);
205 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
218 public abstract long get(); method in class:LongBuffer
225 * {@code get(dst, 0, dst.length)}.
233 public LongBuffer get(long[] dst) { method in class:LongBuffer
234 return get(dst, 0, dst.length);
256 public LongBuffer get(long[] dst, int dstOffset, int longCount) { method in class:LongBuffer
262 dst[i] = get();
276 public abstract long get(int index); method in class:LongBuffer
    [all...]
ShortBuffer.java 153 thisByte = get(thisPos);
154 otherByte = otherBuffer.get(otherPos);
205 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
219 public abstract short get(); method in class:ShortBuffer
226 * {@code get(dst, 0, dst.length)}.
234 public ShortBuffer get(short[] dst) { method in class:ShortBuffer
235 return get(dst, 0, dst.length);
257 public ShortBuffer get(short[] dst, int dstOffset, int shortCount) { method in class:ShortBuffer
263 dst[i] = get();
277 public abstract short get(int index); method in class:ShortBuffer
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
AbstractExecutorService.java 162 return f.get();
177 futures.get(i).cancel(true);
210 Future<T> f = futures.get(i);
213 f.get();
224 futures.get(i).cancel(true);
246 execute((Runnable)futures.get(i));
253 Future<T> f = futures.get(i);
258 f.get(nanos, TimeUnit.NANOSECONDS);
272 futures.get(i).cancel(true);
  /libcore/luni/src/main/java/java/util/concurrent/atomic/
AtomicInteger.java 59 public final int get() { method in class:AtomicInteger
90 int current = get();
132 int current = get();
146 int current = get();
161 int current = get();
175 int current = get();
189 int current = get();
204 int current = get();
216 return Integer.toString(get());
223 return get();
    [all...]
AtomicIntegerArray.java 81 public final int get(int i) { method in class:AtomicIntegerArray
AtomicIntegerFieldUpdater.java 118 * @param obj An object whose field to get
121 public abstract int get(T obj); method in class:AtomicIntegerFieldUpdater
127 * @param obj An object whose field to get and set
133 int current = get(obj);
143 * @param obj An object whose field to get and set
148 int current = get(obj);
159 * @param obj An object whose field to get and set
164 int current = get(obj);
175 * @param obj An object whose field to get and set
181 int current = get(obj)
330 public final int get(T obj) { method in class:AtomicIntegerFieldUpdater.AtomicIntegerFieldUpdaterImpl
    [all...]
AtomicLong.java 73 public final long get() { method in class:AtomicLong
104 long current = get();
146 long current = get();
160 long current = get();
175 long current = get();
189 long current = get();
203 long current = get();
218 long current = get();
230 return Long.toString(get());
238 return (int)get();
    [all...]
AtomicLongArray.java 80 public final long get(int i) { method in class:AtomicLongArray
AtomicReferenceArray.java 94 public final E get(int i) { method in class:AtomicReferenceArray
202 Object a = s.readFields().get("array", null);
AtomicReferenceFieldUpdater.java 134 * @param obj An object whose field to get
137 public abstract V get(T obj); method in class:AtomicReferenceFieldUpdater
143 * @param obj An object whose field to get and set
149 V current = get(obj);
289 public V get(T obj) { method in class:AtomicReferenceFieldUpdater.AtomicReferenceFieldUpdaterImpl
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
Cache.java 213 public Object get(long hash, byte[] encoding) { method in class:Cache
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMConfigurationImpl.java 61 public Object get(DOMConfigurationImpl config) {
78 public Object get(DOMConfigurationImpl config) {
91 public Object get(DOMConfigurationImpl config) {
114 public Object get(DOMConfigurationImpl config) {
126 public Object get(DOMConfigurationImpl config) {
152 public Object get(DOMConfigurationImpl config) {
182 public Object get(DOMConfigurationImpl config) {
209 public Object get(DOMConfigurationImpl config) {
225 public Object get(DOMConfigurationImpl config) {
241 public Object get(DOMConfigurationImpl config)
300 Object get(DOMConfigurationImpl config); method in interface:DOMConfigurationImpl.Parameter
310 public Object get(DOMConfigurationImpl config) { method in class:DOMConfigurationImpl.FixedParameter
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/ref/
FinalizeTest.java 31 if (!finalized.get()) {
46 if (!finalized1.get() || !finalized2.get()) {
47 fail("not yet finalized: " + finalized1.get() + " " + finalized2.get());
61 boolean wasFinalized = finalized.get();
130 assertTrue(count.get() > 0);
138 if (keepGoing.get()) {
  /libcore/luni/src/test/java/libcore/java/net/
OldCookieHandlerTest.java 80 public Map get(URI uri, Map requestHeaders) throws IOException { method in class:OldCookieHandlerTest.MockCookieHandler
  /libcore/luni/src/test/java/libcore/java/nio/charset/
OldCharset_SingleByteAbstractTest.java 56 out.consume(outputCB.get());
  /libcore/luni/src/test/java/libcore/java/util/
BitSetTest.java 38 assertEquals(bs.toString(), ((longs[i / 64] & (1L << (i % 64))) != 0), bs.get(i));
82 assertEquals(bs.toString(), ((bytes[i / 8] & (1L << (i % 8))) != 0), bs.get(i));
  /libcore/luni/src/test/java/tests/security/cert/
CertPathValidatorExceptionTest.java 274 CertPath cp = mcp.get("X.509");
302 CertPath cp = mcp.get("X.509");
371 CertPath cp = mcp.get("X.509");
418 CertPath cp = mcp.get("X.509");
458 public CertPath get(String s) { method in class:CertPathValidatorExceptionTest.myCertPath
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_istream.h 128 public: // get() for single characters
129 int_type get();
130 _Self& get(char_type& __c);
132 public: // get() for character arrays.
133 _Self& get(char_type* __s, streamsize __n, char_type __delim);
134 _Self& get(char_type* __s, streamsize __n) function in class:basic_istream
135 { return get(__s, __n, this->widen('\n')); }
137 public: // get() for streambufs
138 _Self& get(basic_streambuf<_CharT, _Traits>& __buf,
140 _Self& get(basic_streambuf<_CharT, _Traits>& __buf function in class:basic_istream
    [all...]
_monetary.h 61 iter_type get(iter_type __s, iter_type __end, bool __intl, function in class:money_get
65 iter_type get(iter_type __s, iter_type __end, bool __intl, function in class:money_get

Completed in 282 milliseconds

<<41424344454647484950>>