Searched defs:add (Results 1 - 25 of 65) sorted by path

123

/frameworks/base/core/java/android/app/
H A DBackStackRecord.java115 op.removed.add(r);
331 public FragmentTransaction add(Fragment fragment, String tag) { method in class:BackStackRecord
336 public FragmentTransaction add(int containerViewId, Fragment fragment) { method in class:BackStackRecord
341 public FragmentTransaction add(int containerViewId, Fragment fragment, String tag) { method in class:BackStackRecord
575 op.removed.add(old);
H A DFragmentTransaction.java14 * Calls {@link #add(int, Fragment, String)} with a 0 containerViewId.
16 public abstract FragmentTransaction add(Fragment fragment, String tag); method in class:FragmentTransaction
19 * Calls {@link #add(int, Fragment, String)} with a null tag.
21 public abstract FragmentTransaction add(int containerViewId, Fragment fragment); method in class:FragmentTransaction
38 public abstract FragmentTransaction add(int containerViewId, Fragment fragment, String tag); method in class:FragmentTransaction
49 * and then {@link #add(int, Fragment, String)} with the same arguments
H A DQueuedWork.java66 * after an add(). The only time these Runnables are run is from
69 public static void add(Runnable finisher) { method in class:QueuedWork
70 sPendingWorkFinishers.add(finisher);
/frameworks/base/core/java/android/content/
H A DSyncQueue.java66 add(syncOperation, op);
70 public boolean add(SyncOperation operation) { method in class:SyncQueue
71 return add(operation, null /* this is not coming from the database */);
74 private boolean add(SyncOperation operation, method in class:SyncQueue
80 // - if no operation exists then add the new one
H A DSyncStorageEngine.java194 periodicSyncs.add(Pair.create(new Bundle(), DEFAULT_POLL_FREQUENCY_SECONDS));
370 reports.add(mChangeListeners.getBroadcastItem(i));
584 long period, boolean add) {
599 if (add) {
600 // add this periodic sync if one with the same extras doesn't already
615 // if we added an entry to the periodicSyncs array also add an entry to
618 authority.periodicSyncs.add(Pair.create(extras, period));
657 updateOrRemovePeriodicSync(account, providerName, extras, pollFrequency, true /* add */);
671 syncs.add(new PeriodicSync(account, providerName, item.first, item.second));
756 mPendingOperations.add(o
583 updateOrRemovePeriodicSync(Account account, String providerName, Bundle extras, long period, boolean add) argument
[all...]
/frameworks/base/core/java/android/database/
H A DMatrixCursor.java23 * {@link #newRow()} to add rows. Automatically expands internal capacity
200 * @throws CursorIndexOutOfBoundsException if you try to add too many
204 public RowBuilder add(Object columnValue) { method in class:MatrixCursor.RowBuilder
/frameworks/base/core/java/android/net/
H A DUri.java997 void add(String segment) { method in class:Uri.PathSegmentsBuilder
1576 names.add(decode(name));
1629 values.add("");
1631 values.add(decode(query.substring(separator + 1, end)));
2207 segmentBuilder.add(decodedSegment);
2214 segmentBuilder.add(decode(path.substring(previous)));
/frameworks/base/core/java/android/nfc/
H A DApduList.java19 public void add(byte[] command) { method in class:ApduList
20 commands.add(command);
48 commands.add(cmd);
/frameworks/base/core/java/android/os/
H A DRegistrantList.java31 add(Handler h, int what, Object obj) method in class:RegistrantList
33 add(new Registrant(h, what, obj));
41 add(new Registrant(h, what, obj));
45 add(Registrant r) method in class:RegistrantList
48 registrants.add(r);
H A DWorkSource.java150 public boolean add(WorkSource other) { method in class:WorkSource
166 public boolean add(int uid) { method in class:WorkSource
/frameworks/base/core/java/android/provider/
H A DSettings.java287 * To tell which input method's subtypes are displayed in the settings, add
456 * The account types available to add via the add account button may be restricted by adding an
470 * Activity Action: Show add account screen for creating a new account.
475 * The account types available to add may be restricted by adding an {@link #EXTRA_AUTHORITIES}
768 MOVED_TO_SECURE.add(Secure.ADB_ENABLED);
769 MOVED_TO_SECURE.add(Secure.ANDROID_ID);
770 MOVED_TO_SECURE.add(Secure.BLUETOOTH_ON);
771 MOVED_TO_SECURE.add(Secure.DATA_ROAMING);
772 MOVED_TO_SECURE.add(Secur
4278 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/view/
H A DMenu.java27 * You can add items to this menu and handle clicks on your additions. The
92 * container -- or/add this with your base value.
98 * the system -- or/add this with your base value.
104 * user-supplied secondary (infrequently used) options -- or/add this with
111 * alternative actions on the data that is currently displayed -- or/add
142 public MenuItem add(CharSequence title); method in interface:Menu
151 public MenuItem add(int titleRes); method in interface:Menu
168 public MenuItem add(int groupId, int itemId, int order, CharSequence title); method in interface:Menu
171 * Variation on {@link #add(int, int, int, CharSequence)} that takes a
185 public MenuItem add(in method in interface:Menu
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java140 * in a WebView, you must add the {@code INTERNET} permissions to your
190 * <p>A WebView has several customization points where you can add your
1174 sGoogleApps.add("com.google.android.youtube");
1237 installedPackages.add(name);
1815 history.add(data);
2866 // stop the scroll animation, and don't let a subsequent fling add
3834 // the URL provides accessibility but we still need to add our generic script
3909 // If the page is being scrolled to (0,0), do not add in the title
5034 pastEntries.add(getResources().getText(
5040 // There is no autofill profile set up yet, so add a
7859 public QueuedTouch add(QueuedTouch other) { method in class:WebView.QueuedTouch
[all...]
H A DZoomManager.java718 // add a 5pt padding to the left edge.
774 // animations prevent updates, but others can add their own conditions
806 private void add(float focusDelta) { method in class:ZoomManager.FocusMovementQueue
847 mFocusMovementQueue.add(focusDelta);
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java40 * the array. You can add lists or arrays of custom objects. Override the toString() method
172 * @param object The object to add at the end of the array.
174 public void add(T object) { method in class:ArrayAdapter
177 mOriginalValues.add(object);
179 mObjects.add(object);
188 * @param collection The Collection to add at the end of the array.
204 * @param items The items to add at the end of the array.
226 mOriginalValues.add(index, object);
228 mObjects.add(index, object);
291 * Control whether methods that change the list ({@link #add},
[all...]
H A DRelativeLayout.java282 graph.add(child);
965 mTopToBottomLeftToRightSet.add(getChildAt(i));
1242 void add(View view) { method in class:RelativeLayout.DependencyGraph
1250 mNodes.add(node);
1280 roots.add(dependent);
1333 dependency.dependents.add(node);
1346 if (node.dependencies.size() == 0) roots.add(node);
H A DRemoteViewsAdapter.java282 public void add(int position, RemoteViewsFrameLayout layout) { method in class:RemoteViewsAdapter.RemoteViewsFrameLayoutRefSet
295 refs.add(layout);
628 mRequestedIndices.add(position);
629 mLoadIndices.add(position);
658 mLoadIndices.add(i);
1011 mRequestedViews.add(position, loadingView);
H A DTextView.java377 * On some devices the fading edges add a performance penalty if used
614 // also add TextView_showSoftInputOnFocus to the list of attributes above
2788 * multiplied by <code>mult</code> and have <code>add</code> added to it.
2793 public void setLineSpacing(float add, float mult) { argument
2794 if (mSpacingAdd != add || mSpacingMult != mult) {
2795 mSpacingAdd = add;
4476 // The get method will add the listener on controller creation.
7576 mListeners.add(watcher);
8697 outViews.add(this);
8997 event.getText().add(tex
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DStateMachine.java529 * add which adds a processed messaged.
603 void add(Message message, State state, State orgState) { method in class:StateMachine.ProcessedMessages
606 mMessages.add(new ProcessedMessageInfo(message, state, orgState));
906 mProcessedMessages.add(msg, curStateInfo.state, orgState);
908 mProcessedMessages.add(msg, null, null);
1055 * @param state the state to add
1068 // Recursively add our parent as it's not been added yet.
1124 mDeferredMessages.add(newMsg);
1208 * @param state the state to add
1231 * @param state to add
[all...]
/frameworks/base/core/java/com/android/internal/view/menu/
H A DActionMenu.java51 public MenuItem add(CharSequence title) { method in class:ActionMenu
52 return add(0, 0, 0, title);
55 public MenuItem add(int titleRes) { method in class:ActionMenu
56 return add(0, 0, 0, titleRes);
59 public MenuItem add(int groupId, int itemId, int order, int titleRes) { method in class:ActionMenu
60 return add(groupId, itemId, order, mContext.getResources().getString(titleRes));
63 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { method in class:ActionMenu
66 mItems.add(order, item);
89 final MenuItem item = add(groupId, itemId, order, ri.loadLabel(pm))
H A DMenuBuilder.java212 * @param presenter The presenter to add
215 mPresenters.add(new WeakReference<MenuPresenter>(presenter));
384 * Adds an item to the menu. The other add methods funnel to this.
397 mItems.add(findInsertIndex(mItems, ordering), item);
403 public MenuItem add(CharSequence title) { method in class:MenuBuilder
407 public MenuItem add(int titleRes) { method in class:MenuBuilder
411 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { method in class:MenuBuilder
415 public MenuItem add(int group, int id, int categoryOrder, int title) { method in class:MenuBuilder
457 final MenuItem item = add(group, id, categoryOrder, ri.loadLabel(pm))
675 * not been or/add wit
[all...]
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java237 parts.add(new Part());
239 lastPart().add(token);
702 info.add(getType().toString());
783 info.add(getTrack());
803 info.add(getURL());
804 info.add(getRawText());
840 info.add(getRssUrl(docid));
841 info.add(getURL(docid));
899 info.add(getRssUrl(docid));
900 info.add(getUR
1470 public void add(Token token) { method in class:AbstractMessageParser.Part
[all...]
/frameworks/base/core/jni/android/graphics/
H A DColorFilter.cpp57 jint mul, jint add) {
59 return new SkiaLightingFilter(skFilter, mul, add);
94 static SkColorFilter* CreateLightingFilter(JNIEnv* env, jobject, jint mul, jint add) { argument
95 return SkColorFilter::CreateLightingFilter(mul, add);
56 glCreateLightingFilter(JNIEnv* env, jobject, SkColorFilter *skFilter, jint mul, jint add) argument
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp386 void add(const sp<JavaDeathRecipient>& recipient);
403 list->add(this);
517 void DeathRecipientList::add(const sp<JavaDeathRecipient>& recipient) { function in class:DeathRecipientList
520 LOGDEATH("DRL @ %p : add JDR %p", this, recipient.get());

Completed in 2443 milliseconds

123