Searched defs:get (Results 276 - 300 of 362) sorted by last modified time

<<1112131415

/frameworks/base/core/java/android/util/
H A DIntArray.java143 public int get(int index) { method in class:IntArray
H A DLongArray.java128 public long get(int index) { method in class:LongArray
H A DLongSparseArray.java103 public E get(long key) { method in class:LongSparseArray
104 return get(key, null);
112 public E get(long key, E valueIfKeyNotFound) { method in class:LongSparseArray
H A DLongSparseLongArray.java94 public long get(long key) { method in class:LongSparseLongArray
95 return get(key, 0);
102 public long get(long key, long valueIfKeyNotFound) { method in class:LongSparseLongArray
H A DLruCache.java49 * if (cache.get(key) == null) {
55 * value of null from {@link #get}, {@link #put} or {@link #remove} is
110 public final V get(K key) { method in class:LruCache
117 mapValue = map.get(key);
330 * Returns the number of times {@link #get} returned a value that was
338 * Returns the number of times {@link #get} returned null or required a new
H A DMemoryIntArray.java55 private final CloseGuard mCloseGuard = CloseGuard.get();
105 public int get(int index) throws IOException { method in class:MemoryIntArray
H A DProperty.java21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
46 * <p>If either of the get/is method alternatives is found on the class, but an appropriate
91 public abstract V get(T object); method in class:Property
H A DReflectiveProperty.java28 private static final String PREFIX_GET = "get";
42 * "get" and "is to search for the appropriate methods. If the get/is methods are not found,
136 public V get(T object) { method in class:ReflectiveProperty
147 return (V) mField.get(object);
152 // Should not get here: there should always be a non-null getter or field
H A DSingleton.java31 public final T get() { method in class:Singleton
H A DSparseArray.java103 public E get(int key) { method in class:SparseArray
104 return get(key, null);
112 public E get(int key, E valueIfKeyNotFound) { method in class:SparseArray
H A DSparseBooleanArray.java89 public boolean get(int key) { method in class:SparseBooleanArray
90 return get(key, false);
97 public boolean get(int key, boolean valueIfKeyNotFound) { method in class:SparseBooleanArray
H A DSparseIntArray.java94 public int get(int key) { method in class:SparseIntArray
95 return get(key, 0);
102 public int get(int key, int valueIfKeyNotFound) { method in class:SparseIntArray
H A DSparseLongArray.java92 public long get(int key) { method in class:SparseLongArray
93 return get(key, 0);
100 public long get(int key, long valueIfKeyNotFound) { method in class:SparseLongArray
H A DStateSet.java112 public static int[] get(int mask) { method in class:StateSet
/frameworks/base/core/java/android/view/
H A DFocusFinder.java52 return tlFocusFinder.get();
310 return focusables.get(count - 1);
348 View focusable = focusables.get(i);
353 // get focus bounds of other view in same coordinate system
369 return focusables.get(position + 1);
373 return focusables.get(0);
382 return focusables.get(position - 1);
386 return focusables.get(count - 1);
400 return clusters.get(0);
406 return clusters.get(positio
881 View get(View root, View view); method in interface:FocusFinder.UserSpecifiedFocusComparator.NextFocusGetter
[all...]
H A DKeyCharacterMap.java139 * This bit will be set in the return value of {@link #get(int, int)} if the
145 * Mask the return value from {@link #get(int, int)} with this value to get
266 final int combining = sAccentToCombining.get(accent);
365 public int get(int keyCode, int metaState) { method in class:KeyCharacterMap
369 int map = sCombiningToAccent.get(ch);
496 int combining = sAccentToCombining.get(accent);
504 combined = sDeadKeyCache.get(combination, -1);
522 * {@link KeyCharacterMap#getNumber(int)} and {@link KeyCharacterMap#get(int, int)}.
538 * (the same ones used for {@link #get} an
[all...]
H A DViewConfiguration.java308 * @deprecated Use {@link android.view.ViewConfiguration#get(android.content.Context)} instead.
340 * @see #get(android.content.Context)
430 public static ViewConfiguration get(Context context) { method in class:ViewConfiguration
434 ViewConfiguration configuration = sConfigurations.get(density);
H A DViewTreeObserver.java191 * Activity.onEnterAnimationComplete() to get the same signal.
945 access.get(i).onGlobalLayout();
977 cancelDraw |= !(access.get(i).onPreDraw());
999 access.get(i).onWindowShown();
1016 listeners.get(i).onDraw();
1051 access.get(i).onScrollChanged();
1083 access.get(i).onComputeInternalInsets(inoutInfo);
1118 * MyData d = access.get(i);
1136 T get(int index) { method in class:ViewTreeObserver.CopyOnWriteArray.Access
1137 return mData.get(inde
[all...]
H A DWindow.java1264 final int slop = ViewConfiguration.get(context).getScaledWindowTouchSlop();
1569 public abstract void takeKeyEvents(boolean get); argument
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtypeArray.java130 public InputMethodSubtype get(final int index) { method in class:InputMethodSubtypeArray
H A DSparseRectFArray.java260 public RectF get(final int index) { method in class:SparseRectFArray
/frameworks/base/core/java/android/widget/
H A DAbsSpinner.java201 View view = mRecycler.get(selectedPosition);
464 View get(int position) { method in class:AbsSpinner.RecycleBin
466 View result = mScrapHeap.get(position);
H A DActivityChooserModel.java79 * ActivityChooserModel.get(context, "task_specific_history_file_name.xml");
342 public static ActivityChooserModel get(Context context, String historyFileName) { method in class:ActivityChooserModel
344 ActivityChooserModel dataModel = sDataModelRegistry.get(historyFileName);
426 return mActivities.get(index).resolveInfo;
443 ActivityResolveInfo currentActivity = activities.get(i);
478 ActivityResolveInfo chosenActivity = mActivities.get(index);
529 return mActivities.get(0).resolveInfo;
549 ActivityResolveInfo newDefaultActivity = mActivities.get(index);
550 ActivityResolveInfo oldDefaultActivity = mActivities.get(0);
714 ResolveInfo resolveInfo = resolveInfos.get(
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DChooserActivity.java412 fillIn.putExtra(Intent.EXTRA_INTENT, sourceIntents.get(0));
416 alts[i - 1] = sourceIntents.get(i);
578 final ChooserTargetServiceConnection conn = mServiceConnections.get(i);
644 final Intent targetIntent = targetIntents.get(i);
659 final ChooserTarget target = targets.get(i);
910 results.add(mSourceInfo.getAllSourceIntents().get(0));
1089 return mCallerTargets.get(position);
1095 return mServiceTargets.get(position - offset);
1110 final ChooserTarget target = targets.get(i);
1150 final ChooserTargetInfo serviceTarget = mServiceTargets.get(
1229 public float get() { method in class:ChooserActivity.RowScale
[all...]
H A DProcessMap.java26 public E get(String name, int uid) { method in class:ProcessMap
27 SparseArray<E> uids = mMap.get(name);
29 return uids.get(uid);
33 SparseArray<E> uids = mMap.get(name);
43 SparseArray<E> uids = mMap.get(name);

Completed in 191 milliseconds

<<1112131415