Searched defs:add (Results 26 - 50 of 185) sorted by path

12345678

/frameworks/base/core/java/android/provider/
H A DSettings.java198 * Input: To tell which state airplane mode should be set to, add the
492 * To tell which input method's subtypes are displayed in the settings, add
780 * The account types available to add via the add account button may be restricted by adding an
794 * Activity Action: Show add account screen for creating a new account.
799 * The account types available to add may be restricted by adding an {@link #EXTRA_AUTHORITIES}
1164 * Input: To tell which state batter saver mode should be set to, add the
1750 MOVED_TO_SECURE.add(Secure.ANDROID_ID);
1751 MOVED_TO_SECURE.add(Secure.HTTP_PROXY);
1752 MOVED_TO_SECURE.add(Secur
9124 public static Uri add(ContentResolver cr, method in class:Settings.Bookmarks
[all...]
/frameworks/base/core/java/android/text/
H A DAutoText.java195 add(src, off);
212 private void add(String src, char off) { method in class:AutoText
/frameworks/base/core/java/android/transition/
H A DTransition.java211 // removing them from parents to add them to overlays.
535 mStartValuesList.add(start);
536 mEndValuesList.add(end);
559 mStartValuesList.add(startValues);
560 mEndValuesList.add(endValues);
586 mStartValuesList.add(startValues);
587 mEndValuesList.add(endValues);
613 mStartValuesList.add(startValues);
614 mEndValuesList.add(endValues);
633 mStartValuesList.add(star
2397 static <T> ArrayList<T> add(ArrayList<T> list, T item) { method in class:Transition.ArrayListManager
[all...]
/frameworks/base/core/java/android/util/
H A DArraySet.java339 * @param value the object to add.
345 public boolean add(E value) { method in class:ArraySet
364 if (DEBUG) Log.d(TAG, "add: grow from " + mHashes.length + " to " + n);
371 if (DEBUG) Log.d(TAG, "add: copy 0-" + mSize + " to 0");
380 if (DEBUG) Log.d(TAG, "add: move " + index + "-" + (mSize-index)
405 // Cannot optimize since it would break the sorted order - fallback to add()
413 add(value);
422 * Perform a {@link #add(Object)} of all values in <var>array</var>
436 add(array.valueAt(i));
674 add(ke
[all...]
H A DIntArray.java57 public void add(int value) { method in class:IntArray
58 add(mSize, value);
66 public void add(int index, int value) { method in class:IntArray
H A DLongArray.java55 public void add(long value) { method in class:LongArray
56 add(mSize, value);
64 public void add(int index, long value) { method in class:LongArray
H A DMapCollections.java167 public boolean add(Map.Entry<K, V> object) { method in class:MapCollections.EntrySet
270 public boolean add(K object) { method in class:MapCollections.KeySet
358 public boolean add(V object) { method in class:MapCollections.ValuesCollection
/frameworks/base/core/java/android/view/
H A DMenu.java28 * You can add items to this menu and handle clicks on your additions. The
93 * container -- or/add this with your base value.
99 * the system -- or/add this with your base value.
105 * user-supplied secondary (infrequently used) options -- or/add this with
112 * alternative actions on the data that is currently displayed -- or/add
143 public MenuItem add(CharSequence title); method in interface:Menu
152 public MenuItem add(@StringRes int titleRes); method in interface:Menu
169 public MenuItem add(int groupId, int itemId, int order, CharSequence title); method in interface:Menu
172 * Variation on {@link #add(int, int, int, CharSequence)} that takes a
186 public MenuItem add(in method in interface:Menu
[all...]
H A DViewGroupOverlay.java60 * {@code Drawable}s added with {@link #add(Drawable)} API even if a call to
61 * this API happened after the call to {@link #add(Drawable)}.</p>
69 * @see ViewOverlay#add(Drawable)
71 public void add(@NonNull View view) { method in class:ViewGroupOverlay
72 mOverlayViewGroup.add(view);
80 * @see #add(View)
H A DViewOverlay.java74 public void add(@NonNull Drawable drawable) { method in class:ViewOverlay
75 mOverlayViewGroup.add(drawable);
80 * not added with {@link #add(Drawable)} is a no-op. Passing <code>null</code> parameter will
84 * @see #add(Drawable)
105 * via the add/remove methods in ViewOverlay, Views are added/removed via
146 public void add(@NonNull Drawable drawable) { method in class:ViewOverlay.OverlayViewGroup
154 // Make each drawable unique in the overlay; can't add it more than once
155 mDrawables.add(drawable);
177 public void add(@NonNull View child) { method in class:ViewOverlay.OverlayViewGroup
H A DViewTreeObserver.java419 * @param listener The callback to add
431 mOnWindowAttachListeners.add(listener);
454 * @param listener The callback to add
466 mOnWindowFocusListeners.add(listener);
489 * @param listener The callback to add
500 mOnGlobalFocusListeners.add(listener);
524 * @param listener The callback to add
535 mOnGlobalLayoutListeners.add(listener);
574 * @param listener The callback to add
585 mOnPreDrawListeners.add(listene
1145 void add(T item) { method in class:ViewTreeObserver.CopyOnWriteArray
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityCache.java230 windows.add(AccessibilityWindowInfo.obtain(window));
255 public void add(AccessibilityNodeInfo info) { method in class:AccessibilityCache
258 Log.i(LOG_TAG, "add(" + info + ")");
288 // add cyclse to the cache.
447 if (!seen.add(node)) {
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java47 * the array. You can add lists or arrays of custom objects. Override the toString() method
190 * @param object The object to add at the end of the array.
192 public void add(@Nullable T object) { method in class:ArrayAdapter
195 mOriginalValues.add(object);
197 mObjects.add(object);
206 * @param collection The Collection to add at the end of the array.
231 * @param items The items to add at the end of the array.
253 mOriginalValues.add(index, object);
255 mObjects.add(index, object);
315 * Control whether methods that change the list ({@link #add},
[all...]
H A DRelativeLayout.java378 graph.add(getChildAt(i));
1125 mTopToBottomLeftToRightSet.add(getChildAt(i));
1726 void add(View view) { method in class:RelativeLayout.DependencyGraph
1734 mNodes.add(node);
1766 roots.add(dependent);
H A DRemoteViewsAdapter.java339 public void add(int position, RemoteViewsFrameLayout layout) { method in class:RemoteViewsAdapter.RemoteViewsFrameLayoutRefSet
350 refs.add(layout);
1117 mRequestedViews.add(position, layout);
H A DTextView.java546 * On some devices the fading edges add a performance penalty if used
3976 * multiplied by <code>mult</code> and have <code>add</code> added to it.
3981 public void setLineSpacing(float add, float mult) { argument
3982 if (mSpacingAdd != add || mSpacingMult != mult) {
3983 mSpacingAdd = add;
8109 mListeners.add(watcher);
8683 outViews.add(this);
8915 event.getText().add(text);
9479 * <p>A custom implementation can add new entries in the default menu in its
9518 * <p>A custom implementation can add ne
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DResolverActivity.java265 mIntents.add(0, new Intent(intent));
414 mIntents.add(intent);
974 mSourceIntents.add(originalIntent);
1050 mSourceIntents.add(alt);
1452 rci.add(intent, newInfo);
1462 into.add(rci);
1500 duplicates.add(startApp);
1508 duplicates.add(jApp);
1516 final ResolveInfo add = rci.getResolveInfoAt(0);
1520 extraInfo = add
1705 public void add(Intent intent, ResolveInfo info) { method in class:ResolverActivity.ResolvedComponentInfo
[all...]
/frameworks/base/core/java/com/android/internal/app/procstats/
H A DProcessState.java116 void add(long newPss, long newSamples) { method in class:ProcessState.PssAggr
249 public void add(ProcessState other) { method in class:ProcessState
673 fgPss.add(avg, samples);
675 bgPss.add(avg, samples);
677 cachedPss.add(avg, samples);
689 fgPss.add(bgPss.pss, bgPss.samples);
693 fgPss.add(cachedPss.pss, cachedPss.samples);
697 bgPss.add(cachedPss.pss, cachedPss.samples);
700 bgPss.add(fgPss.pss, fgPss.samples);
703 cachedPss.add(bgPs
[all...]
H A DProcessStats.java218 public void add(ProcessStats other) { method in class:ProcessStats
247 thisProc.add(otherProc);
256 thisSvc.add(otherSvc);
282 thisProc.add(otherProc);
553 mPageTypeZones.add(zone);
554 mPageTypeLabels.add(matcher.group(2));
555 mPageTypeSizes.add(splitAndParseNumbers(matcher.group(3)));
690 mIndexToCommonString.add(null);
1108 mPageTypeZones.add(in.readInt());
1109 mPageTypeLabels.add(i
[all...]
H A DServiceState.java203 public void add(ServiceState other) { method in class:ServiceState
/frameworks/base/core/java/com/android/internal/midi/
H A DEventScheduler.java79 public void add(SchedulableEvent event) { method in class:EventScheduler.FastEventQueue
141 mEventPool.add(event);
151 public void add(SchedulableEvent event) { method in class:EventScheduler
165 list.add(event);
/frameworks/base/core/java/com/android/internal/os/
H A DBatterySipper.java138 public void add(BatterySipper other) { method in class:BatterySipper
H A DBatteryStatsImpl.java667 public void add(TimeBaseObs observer) { method in class:BatteryStatsImpl.TimeBase
668 mObservers.add(observer);
841 timeBase.add(this);
846 timeBase.add(this);
944 timeBase.add(this);
949 timeBase.add(this);
1085 timeBase.add(this);
1093 timeBase.add(this);
1326 * and cumulative. If you are dealing with deltas, use {@link #add(long, int)}.
1359 public void add(lon method in class:BatteryStatsImpl.SamplingTimer
1811 public void add(String name, T obj) { method in class:BatteryStatsImpl.OverflowArrayMap
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DArrayUtils.java418 public static @NonNull <T> ArraySet<T> add(@Nullable ArraySet<T> cur, T val) { method in class:ArrayUtils
422 cur.add(val);
442 public static @NonNull <T> ArrayList<T> add(@Nullable ArrayList<T> cur, T val) { method in class:ArrayUtils
446 cur.add(val);
H A DCallbackRegistry.java151 // However, we must also keep track of those in mFirst64Removed, so we add 2 instead:
213 * @param callback The callback to add.
215 public synchronized void add(C callback) { method in class:CallbackRegistry
218 mCallbacks.add(callback);
315 callbacks.add(mCallbacks.get(i));
366 clone.mCallbacks.add(mCallbacks.get(i));

Completed in 3738 milliseconds

12345678