Searched defs:add (Results 1 - 25 of 185) sorted by last modified time

12345678

/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DGuidedStepFragment.java67 * Clients use following helper functions to add GuidedStepFragment to Activity or FragmentManager:
71 * <li>{@link #add(FragmentManager, GuidedStepFragment)} or {@link #add(FragmentManager,
72 * GuidedStepFragment, int)}, to add GuidedStepFragment on top of existing Fragments or
119 * should use {@link #add} to place subsequent GuidedFragments onto the fragment stack so that
158 * <li>{@link #add(FragmentManager, GuidedStepFragment)} or {@link #add(FragmentManager,
453 public static int add(FragmentManager fragmentManager, GuidedStepFragment fragment) { method in class:GuidedStepFragment
454 return add(fragmentManager, fragment, android.R.id.content);
471 * @param id The id of container to add GuidedStepFragmen
474 public static int add(FragmentManager fragmentManager, GuidedStepFragment fragment, int id) { method in class:GuidedStepFragment
[all...]
H A DGuidedStepSupportFragment.java69 * Clients use following helper functions to add GuidedStepSupportFragment to Activity or FragmentManager:
73 * <li>{@link #add(FragmentManager, GuidedStepSupportFragment)} or {@link #add(FragmentManager,
74 * GuidedStepSupportFragment, int)}, to add GuidedStepSupportFragment on top of existing Fragments or
121 * should use {@link #add} to place subsequent GuidedFragments onto the fragment stack so that
160 * <li>{@link #add(FragmentManager, GuidedStepSupportFragment)} or {@link #add(FragmentManager,
455 public static int add(FragmentManager fragmentManager, GuidedStepSupportFragment fragment) { method in class:GuidedStepSupportFragment
456 return add(fragmentManager, fragment, android.R.id.content);
473 * @param id The id of container to add GuidedStepSupportFragmen
476 public static int add(FragmentManager fragmentManager, GuidedStepSupportFragment fragment, int id) { method in class:GuidedStepSupportFragment
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DArrayObjectAdapter.java85 * @param item The item to add to the end of the adapter.
87 public void add(Object item) { method in class:ArrayObjectAdapter
88 add(mItems.size(), item);
98 public void add(int index, Object item) { method in class:ArrayObjectAdapter
99 mItems.add(index, item);
/frameworks/support/v4/donut/android/support/v4/app/
H A DNotificationCompatBase.java62 public static Notification add(Notification notification, Context context, method in class:NotificationCompatBase
/frameworks/support/v4/gingerbread/android/support/v4/app/
H A DNotificationCompatGingerbread.java24 public static Notification add(Notification notification, Context context, method in class:NotificationCompatGingerbread
/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DNotificationCompatHoneycomb.java26 static Notification add(Context context, Notification n, method in class:NotificationCompatHoneycomb
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java134 op.removed.add(r);
402 public FragmentTransaction add(Fragment fragment, String tag) { method in class:BackStackRecord
407 public FragmentTransaction add(int containerViewId, Fragment fragment) { method in class:BackStackRecord
412 public FragmentTransaction add(int containerViewId, Fragment fragment, String tag) { method in class:BackStackRecord
431 throw new IllegalArgumentException("Can't add fragment "
537 mSharedElementSourceNames.add(transitionName);
538 mSharedElementTargetNames.add(name);
708 op.removed.add(old);
1059 // any views by default. They'll only target the views we tell add. If we don't
1060 // add an
[all...]
H A DFragmentTransaction.java40 * Calls {@link #add(int, Fragment, String)} with a 0 containerViewId.
42 public abstract FragmentTransaction add(Fragment fragment, String tag); method in class:FragmentTransaction
45 * Calls {@link #add(int, Fragment, String)} with a null tag.
47 public abstract FragmentTransaction add(@IdRes int containerViewId, Fragment fragment); method in class:FragmentTransaction
64 public abstract FragmentTransaction add(@IdRes int containerViewId, Fragment fragment, method in class:FragmentTransaction
76 * and then {@link #add(int, Fragment, String)} with the same arguments
H A DShareCompat.java346 private void combineArrayExtra(String extra, ArrayList<String> add) { argument
349 String[] finalAddresses = new String[currentLength + add.size()];
350 add.toArray(finalAddresses);
352 System.arraycopy(currentAddresses, 0, finalAddresses, add.size(), currentLength);
357 private void combineArrayExtra(String extra, String[] add) { argument
362 String[] result = new String[oldLength + add.length];
364 System.arraycopy(add, 0, result, oldLength, add.length);
384 * ShareCompat.configureMenuItem()} to add a Share item to the menu while
498 mStreams.add(currentStrea
[all...]
/frameworks/support/v4/java/android/support/v4/util/
H A DMapCollections.java165 public boolean add(Map.Entry<K, V> object) { method in class:MapCollections.EntrySet
268 public boolean add(K object) { method in class:MapCollections.KeySet
356 public boolean add(V object) { method in class:MapCollections.ValuesCollection
/frameworks/support/v4/tests/java/android/support/v4/view/
H A DBaseViewPagerTest.java70 public void add(String title, Q content) { method in class:BaseViewPagerTest.BasePagerAdapter
71 mEntries.add(new Pair(title, content));
186 adapter.add("Red", Color.RED);
187 adapter.add("Green", Color.GREEN);
188 adapter.add("Blue", Color.BLUE);
392 newAdapter.add("Title 0", "Body 0");
393 newAdapter.add("Title 1", "Body 1");
394 newAdapter.add("Title 2", "Body 2");
395 newAdapter.add("Title 3", "Body 3");
506 adapter.add("Re
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DMenuBuilder.java238 * @param presenter The presenter to add
250 * @param presenter The presenter to add
254 mPresenters.add(new WeakReference<MenuPresenter>(presenter));
429 * Adds an item to the menu. The other add methods funnel to this.
442 mItems.add(findInsertIndex(mItems, ordering), item);
455 public MenuItem add(CharSequence title) { method in class:MenuBuilder
460 public MenuItem add(int titleRes) { method in class:MenuBuilder
465 public MenuItem add(int group, int id, int categoryOrder, CharSequence title) { method in class:MenuBuilder
470 public MenuItem add(int group, int id, int categoryOrder, int title) { method in class:MenuBuilder
517 final MenuItem item = add(grou
[all...]
H A DMenuWrapperICS.java39 public MenuItem add(CharSequence title) { method in class:MenuWrapperICS
40 return getMenuItemWrapper(mWrappedObject.add(title));
44 public MenuItem add(int titleRes) { method in class:MenuWrapperICS
45 return getMenuItemWrapper(mWrappedObject.add(titleRes));
49 public MenuItem add(int groupId, int itemId, int order, CharSequence title) { method in class:MenuWrapperICS
50 return getMenuItemWrapper(mWrappedObject.add(groupId, itemId, order, title));
54 public MenuItem add(int groupId, int itemId, int order, int titleRes) { method in class:MenuWrapperICS
55 return getMenuItemWrapper(mWrappedObject.add(groupId, itemId, order, titleRes));
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DAdapterHelperTest.java142 mFirstPassUpdates.add(updateOp);
150 mSecondPassUpdates.add(updateOp);
212 mViewHolders.add(viewHolder);
251 add(2, 1);
253 add(3, 1);
263 add(2, 1);
265 add(1, 5);
289 add(0, 1);
303 add(0, 1);
311 add(
998 void add(int start, int count) { method in class:AdapterHelperTest
1065 public void add(int index, int count) { method in class:AdapterHelperTest.TestAdapter
[all...]
H A DOpReorderTest.java60 mRecycledOps.add(op);
257 add(s, nextInt(random, 50));
295 UpdateOp add(int start, int count) { method in class:OpReorderTest
305 mUpdateOps.add(op);
312 items.add(Item.create());
316 clones.add(Item.clone(items.get(i)));
387 mAddedItems.add(newItem);
388 items.add(op.positionStart + i, newItem);
393 mRemovedItems.add(items.remove(op.positionStart));
397 items.add(o
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/util/
H A DSortedList.java133 public int add(T item) { method in class:SortedList
135 return add(item, true);
139 * Adds the given items to the list. Equivalent to calling {@link SortedList#add} in a loop,
337 * {@link #endBatchedUpdates()}. For example, if you add multiple items in a loop
350 * mSortedList.add(item1)
351 * mSortedList.add(item2)
391 private int add(T item, boolean notify) { method in class:SortedList
478 * @see #add(Object)
501 int newIndex = add(item, false);
532 * @see #add(Objec
[all...]
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DOpReorderer.java81 // going in reverse, first revert the effect of add
97 // now affect of add is consumed. now apply effect of first remove
155 list.add(movePos, extraRm);
159 private void swapMoveAdd(List<UpdateOp> list, int move, UpdateOp moveOp, int add, argument
162 // going in reverse, first revert the effect of add
177 list.set(add, moveOp);
184 // going in reverse, first revert the effect of add
188 // moved item is updated. add an update for it
192 // now affect of add is consumed. now apply effect of first remove
210 list.add(mov
[all...]
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseRecyclerViewInstrumentationTest.java716 mItems.add(pos, new Item(pos, prefix));
893 * Similar to other methods but negative count means delete and position count means add.
895 * For instance, calling this method with <code>[1,1], [2,-1]</code> it will first add an
959 mItems.add(to, item);
997 add(tuple);
1002 private void add(int[] tuple) { method in class:BaseRecyclerViewInstrumentationTest.TestAdapter.AddRemoveRunnable
1085 mAttachedSet.add(viewHolder));
1092 // when a new RV is attached, clear the set and add all view holders
1097 mAttachedSet.add(recyclerView.getChildViewHolder(view));
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DElement.java947 public Builder add(Element element, String name, int arraySize) { method in class:Element.Builder
991 public Builder add(Element element, String name) { method in class:Element.Builder
992 return add(element, name, 1);
/frameworks/volley/src/main/java/com/android/volley/
H A DRequestQueue.java36 * Calling {@link #add(Request)} will enqueue the given Request for dispatch,
227 public <T> Request<T> add(Request<T> request) { method in class:RequestQueue
228 // Tag the request as belonging to this queue and add it to the set of current requests.
231 mCurrentRequests.add(request);
236 request.addMarker("add-to-queue");
240 mNetworkQueue.add(request);
253 stagedRequests.add(request);
262 mCacheQueue.add(request);
305 mFinishedListeners.add(listener);
H A DVolleyLog.java130 public synchronized void add(String name, long threadId) { method in class:VolleyLog.MarkerLog
135 mMarkers.add(new Marker(name, threadId, SystemClock.elapsedRealtime()));
/frameworks/rs/cpp/
H A DElement.cpp432 void Element::Builder::add(android::RSC::sp<const Element>e, const char * name, uint32_t arraySize) { function in class:Element::Builder
H A DScriptIntrinsics.cpp251 float add[4] = {0.f, 0.f, 0.f, 0.f}; local
252 setAdd(add);
284 void ScriptIntrinsicColorMatrix::setAdd(float* add) { argument
285 Script::setVar(1, (void*)add, sizeof(float) * 4);
462 fp.add(r);
463 fp.add(g);
464 fp.add(b);
465 fp.add(a);
H A DrsCppStructs.h1417 void add(sp<const Element> e, const char * name, uint32_t arraySize = 1);
1511 void add(T t) { function in class:android::RSC::FieldPacker
1520 void add(rs_matrix4x4 m) {
1522 add(m.m[i]);
1526 void add(rs_matrix3x3 m) {
1528 add(m.m[i]);
1532 void add(rs_matrix2x2 m) {
1534 add(m.m[i]);
1539 void add(sp<BaseObj> obj) { function in class:android::RSC::FieldPacker
1541 add((uint32_
[all...]
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
H A DVectorUtil.java59 public static void add(double[] a, double[] b, method in class:VectorUtil

Completed in 5025 milliseconds

12345678