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

<<61626364656667686970>>

  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IntRangeManager.java 99 mClients.add(intRange.mClients.get(i));
116 ClientRange nextRange = mClients.get(i);
207 IntRange range = mRanges.get(startIndex);
221 nextRange = mRanges.get(startIndex + 1);
276 IntRange endRange = mRanges.get(endIndex);
293 IntRange joinRange = mRanges.get(joinIndex);
317 IntRange joinRange = mRanges.get(joinIndex);
343 IntRange joinRange = mRanges.get(joinIndex);
364 IntRange testRange = mRanges.get(testIndex);
384 // get last range to coalesce into start rang
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ImportTestProvider.java 49 contentValuesCollection = mMimeTypeToExpectedContentValues.get(mimeType);
73 ContentProviderOperation operation = operations.get(i);
78 ContentProviderOperation operation = operations.get(i);
83 TestCase.assertNull(actualContentValues.get(RawContacts.ACCOUNT_NAME));
84 TestCase.assertNull(actualContentValues.get(RawContacts.ACCOUNT_TYPE));
116 mMimeTypeToExpectedContentValues.get(mimeType);
227 final Object actualValue = actual.get(key);
  /frameworks/support/v4/java/android/support/v4/content/
ModernAsyncTask.java 131 final Result result = get();
150 final boolean wasTaskInvoked = mTaskInvoked.get();
320 public final Result get() throws InterruptedException, ExecutionException { method in class:ModernAsyncTask
321 return mFuture.get();
339 public final Result get(long timeout, TimeUnit unit) throws InterruptedException, method in class:ModernAsyncTask
341 return mFuture.get(timeout, unit);
  /frameworks/support/v4/java/android/support/v4/util/
LongSparseArray.java 95 public E get(long key) { method in class:LongSparseArray
96 return get(key, null);
104 public E get(long key, E valueIfKeyNotFound) { method in class:LongSparseArray
SimpleArrayMap.java 312 public V get(Object key) { method in class:SimpleArrayMap
535 Object theirs = map.get(key);
SparseArrayCompat.java 75 public E get(int key) { method in class:SparseArrayCompat
76 return get(key, null);
84 public E get(int key, E valueIfKeyNotFound) { method in class:SparseArrayCompat
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Matrix3f.java 67 public float get(int x, int y) { method in class:Matrix3f
216 float rhs_ij = rhs.get(i,j);
217 ri0 += lhs.get(j,0) * rhs_ij;
218 ri1 += lhs.get(j,1) * rhs_ij;
219 ri2 += lhs.get(j,2) * rhs_ij;
  /hardware/qcom/display/msm8960/libcopybit/
copybit.h 189 * Get a static copybit information.
196 int (*get)(struct copybit_device_t *dev, int name); member in struct:copybit_device_t
  /hardware/qcom/display/msm8974/libcopybit/
copybit.h 190 * Get a static copybit information.
197 int (*get)(struct copybit_device_t *dev, int name); member in struct:copybit_device_t
  /hardware/qcom/display/msm8x26/libcopybit/
copybit.h 189 * Get a static copybit information.
196 int (*get)(struct copybit_device_t *dev, int name); member in struct:copybit_device_t
  /hardware/ti/wlan/mac80211/ti-utils/
calibrator.h 153 DECLARE_SECTION(get); variable
  /libcore/benchmarks/src/benchmarks/regression/
URLConnectionBenchmark.java 66 get(); // ensure the server has started its threads, etc. method
76 totalBytesRead += get();
81 private int get() throws IOException { method in class:URLConnectionBenchmark
  /libcore/libart/src/main/java/java/lang/reflect/
Field.java 278 public native Object get(Object object) throws IllegalAccessException, IllegalArgumentException; method in class:Field
    [all...]
  /libcore/luni/src/main/java/java/lang/
System.java 659 @Override public String get(Object key) { method in class:System.SystemEnvironment
660 return map.get(toNonNullString(key));
ThreadLocal.java 51 public T get() { method in class:ThreadLocal
96 * is followed by a {@link #get()} before a {@link #set},
97 * {@code #get()} will call {@link #initialValue()} and create a new
218 InheritableThreadLocal key = reference.get();
281 if (reference.get() == null) {
347 ThreadLocal<?> key = reference.get();
  /libcore/luni/src/main/java/java/nio/
ByteArrayBuffer.java 107 @Override public final ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { method in class:ByteArrayBuffer
114 final void get(char[] dst, int dstOffset, int charCount) { method in class:ByteArrayBuffer
120 final void get(double[] dst, int dstOffset, int doubleCount) { method in class:ByteArrayBuffer
126 final void get(float[] dst, int dstOffset, int floatCount) { method in class:ByteArrayBuffer
132 final void get(int[] dst, int dstOffset, int intCount) { method in class:ByteArrayBuffer
138 final void get(long[] dst, int dstOffset, int longCount) { method in class:ByteArrayBuffer
144 final void get(short[] dst, int dstOffset, int shortCount) { method in class:ByteArrayBuffer
150 @Override public final byte get() { method in class:ByteArrayBuffer
157 @Override public final byte get(int index) { method in class:ByteArrayBuffer
ByteBuffer.java 287 thisByte = get(thisPos);
288 otherByte = otherBuffer.get(otherPos);
343 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
356 public abstract byte get(); method in class:ByteBuffer
363 * {@code get(dst, 0, dst.length)}.
371 public ByteBuffer get(byte[] dst) { method in class:ByteBuffer
372 return get(dst, 0, dst.length);
392 public ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { method in class:ByteBuffer
398 dst[i] = get();
412 public abstract byte get(int index); method in class:ByteBuffer
    [all...]
CharBuffer.java 184 return get(position + index);
219 thisByte = get(thisPos);
220 otherByte = otherBuffer.get(otherPos);
271 equalSoFar = get(myPosition++) == otherBuffer.get(otherPosition++);
284 public abstract char get(); method in class:CharBuffer
291 * {@code get(dst, 0, dst.length)}.
299 public CharBuffer get(char[] dst) { method in class:CharBuffer
300 return get(dst, 0, dst.length);
322 public CharBuffer get(char[] dst, int dstOffset, int charCount) method in class:CharBuffer
342 public abstract char get(int index); method in class:CharBuffer
640 result.append(get(i)); method
    [all...]
DirectByteBuffer.java 106 @Override public final ByteBuffer get(byte[] dst, int dstOffset, int byteCount) { method in class:DirectByteBuffer
113 final void get(char[] dst, int dstOffset, int charCount) { method in class:DirectByteBuffer
119 final void get(double[] dst, int dstOffset, int doubleCount) { method in class:DirectByteBuffer
125 final void get(float[] dst, int dstOffset, int floatCount) { method in class:DirectByteBuffer
131 final void get(int[] dst, int dstOffset, int intCount) { method in class:DirectByteBuffer
137 final void get(long[] dst, int dstOffset, int longCount) { method in class:DirectByteBuffer
143 final void get(short[] dst, int dstOffset, int shortCount) { method in class:DirectByteBuffer
149 @Override public final byte get() { method in class:DirectByteBuffer
156 @Override public final byte get(int index) { method in class:DirectByteBuffer
DoubleBuffer.java 154 thisDouble = get(thisPos);
155 otherDouble = otherBuffer.get(otherPos);
213 double a = get(myPosition++);
214 double b = otherBuffer.get(otherPosition++);
229 public abstract double get(); method in class:DoubleBuffer
236 * {@code get(dst, 0, dst.length)}.
244 public DoubleBuffer get(double[] dst) { method in class:DoubleBuffer
245 return get(dst, 0, dst.length);
267 public DoubleBuffer get(double[] dst, int dstOffset, int doubleCount) { method in class:DoubleBuffer
273 dst[i] = get();
287 public abstract double get(int index); method in class:DoubleBuffer
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
CharsetDecoderICU.java 195 in.get(allocatedInput, 0, inEnd);
CharsetEncoderICU.java 86 byte[] replacement = DEFAULT_REPLACEMENTS.get(icuCanonicalName);
224 in.get(allocatedInput, 0, inEnd);
  /libcore/luni/src/main/java/java/util/
AbstractList.java 24 * methods {@code get()} and {@code size()}, and to create a
55 E result = get(pos + 1);
125 E result = get(pos);
289 public E get(int location) { method in class:AbstractList.SubAbstractList
292 return fullList.get(location + offset);
512 public abstract E get(int location); method in class:AbstractList
703 * The subList's set(int, Object), get(int), add(int, Object), remove(int),
AbstractMap.java 29 * maps. For example in the default implementation, each call to {@link #get}
256 Object theirs = map.get(key);
281 public V get(Object key) { method in class:AbstractMap
Collections.java 80 @Override public E get(int location) { method in class:Collections.CopiesList
101 @Override public Object get(int location) { method in class:Collections.EmptyList
147 @Override public Object get(Object key) { method in class:Collections.EmptyMap
275 @Override public E get(int location) { method in class:SingletonList
307 @Override public V get(Object key) { method in class:SingletonMap
535 @Override public E get(int location) {
537 return list.get(location);
700 @Override public V get(Object key) {
702 return m.get(key);
1049 @Override public E get(int location)
    [all...]

Completed in 723 milliseconds

<<61626364656667686970>>