Searched defs:remove (Results 101 - 125 of 136) sorted by relevance

123456

/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java121 public void remove(IWindow arg0) throws RemoteException { method in class:BridgeWindowSession
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp350 void remove(EGLint attribute) { function in class:android::EGLAttributeVector
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRemotePlaybackClient.java134 * {@link MediaControlIntent#ACTION_REMOVE remove}.
240 * @param callback The callback to set. May be null to remove the previous callback.
253 * @param listener The callback to set. May be null to remove the previous callback.
420 * Sends a request to remove a media item from the queue.
441 public void remove(String itemId, Bundle extras, ItemActionCallback callback) { method in class:RemotePlaybackClient
/frameworks/support/v7/recyclerview/src/android/support/v7/util/
H A DSortedList.java352 * mSortedList.remove(item3)
423 public boolean remove(T item) { method in class:SortedList
425 return remove(item, true);
442 private boolean remove(T item, boolean notify) { method in class:SortedList
/frameworks/base/core/java/android/hardware/fingerprint/
H A DFingerprintManager.java101 * The {@link FingerprintManager#remove(Fingerprint, RemovalCallback)} call failed. Typically
373 * Callback structure provided to {@link FingerprintManager#remove(int). Users of
375 * {@link FingerprintManager#remove(int, int, RemovalCallback)} for listening to
383 * @param fp The fingerprint that the call attempted to remove
581 * @param fp the fingerprint item to remove
589 public void remove(Fingerprint fp, int userId, RemovalCallback callback) { method in class:FingerprintManager
593 mService.remove(mToken, fp.getFingerId(), fp.getGroupId(), userId, mServiceReceiver);
595 Log.w(TAG, "Remote exception in remove: ", e);
/frameworks/base/core/java/android/view/
H A DViewTreeObserver.java437 * @param victim The callback to remove
448 mOnWindowAttachListeners.remove(victim);
472 * @param victim The callback to remove
483 mOnWindowFocusListeners.remove(victim);
506 * @param victim The callback to remove
517 mOnGlobalFocusListeners.remove(victim);
541 * @param victim The callback to remove
557 * @param victim The callback to remove
568 mOnGlobalLayoutListeners.remove(victim);
591 * @param victim The callback to remove
1153 void remove(T item) { method in class:ViewTreeObserver.CopyOnWriteArray
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java121 mTasks.remove(taskIndex);
142 boolean remove(Task t) { method in class:FilteredTaskList
144 boolean removed = mTasks.remove(t);
595 taskList.remove(t);
596 // Remove it from the group as well, and if it is empty, remove the group
620 mRawTaskList.remove(t);
631 mRawTaskList.remove(t);
860 mGroups.remove(group);
861 mAffinitiesGroups.remove(group.affiliation);
/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java78 * Eventually we may want to remove the notion of dummy value but for now this
413 remove(r.binder);
425 remove(callback.asBinder());
540 remove(r.binder);
550 remove(r.binder);
558 remove(r.binder);
566 remove(r.binder);
576 remove(r.binder);
584 remove(r.binder);
592 remove(
677 private void remove(IBinder binder) { method in class:TelephonyRegistry
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessList.java661 public static final void remove(int pid) { method in class:ProcessList
/frameworks/base/services/core/java/com/android/server/fingerprint/
H A DFingerprintService.java148 // operation (authenticate, enroll, remove, enumerate, etc), which is
339 * @param initiatedByClient true for authenticate, remove and enroll
487 mLockoutMonitors.remove(monitor);
572 // the alarm might still be pending; remove it.
797 public void remove(final IBinder token, final int fingerId, final int groupId, method in class:FingerprintService.FingerprintServiceWrapper
/frameworks/base/services/core/java/com/android/server/wm/
H A DSession.java192 public void remove(IWindow window) { method in class:Session
568 mService.mSessions.remove(this);
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp75 // proxies. A firewall might remove a port mapping when there is no outgoing
483 bool remove(AudioStream *stream);
699 bool AudioGroup::remove(AudioStream *stream) function in class:__anon1612::AudioGroup
1032 void remove(JNIEnv *env, jobject thiz, jlong stream) function in namespace:__anon1612
1036 if (!stream || !group->remove((AudioStream *)stream)) {
1061 {"nativeRemove", "(J)V", (void *)remove},
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/widget/
H A DAdapterHelperTest.java354 // TODO test MOVE then remove items in between.
355 // TODO test MOVE then remove it, make sure it is not dispatched
1028 mPreLayoutItems.remove(item);
1031 mTestAdapter.remove(start, count);
1077 mItems.add(to, mItems.remove(from));
1083 public void remove(int index, int count) { method in class:AdapterHelperTest.TestAdapter
1085 mItems.remove(index);
1124 mItems.remove(op.positionStart);
1133 mItems.add(op.itemCount, mItems.remove(op.positionStart));
1140 return mPendingAdded.remove();
[all...]
/frameworks/av/camera/
H A DCameraParameters.cpp291 void CameraParameters::remove(const char *key) function in class:android::CameraParameters
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java143 "Instantiate " + bse + " set remove fragment #" + mOps[pos]);
508 public FragmentTransaction remove(Fragment fragment) { method in class:BackStackRecord
833 lastInFragments.remove(containerId);
848 firstOutFragments.remove(containerId);
890 lastInFragments.remove(old.mContainerId);
1150 sharedElementTargets.remove(state.nonExistentView);
1452 * After the transition has started, remove all targets that we added to the transitions
1521 * when they are removed later, a list match will suffice to remove the targets.
1523 * the removeTargets call will remove them unexpectedly.
1620 hiddenFragmentViews.remove(fragmen
[all...]
H A DDownloadManager.java1030 // called with nothing to remove!
1037 * Cancel downloads and remove them from the download manager. Each download will be stopped if
1041 * @param ids the IDs of the downloads to remove
1044 public int remove(long... ids) { method in class:DownloadManager
/frameworks/base/core/java/android/text/
H A DTextUtils.java326 * not remove any empty strings from the result. For example split("a,", "," ) returns {"a", ""}.
344 * split is empty. This returns []. This does not remove any empty strings from the result.
430 public void remove() { method in class:TextUtils.SimpleStringSplitter
/frameworks/base/core/java/android/transition/
H A DTransition.java532 TransitionValues end = unmatchedEnd.remove(view);
561 unmatchedStart.remove(startView);
562 unmatchedEnd.remove(endView);
588 unmatchedStart.remove(startView);
589 unmatchedEnd.remove(endView);
615 unmatchedStart.remove(startView);
616 unmatchedEnd.remove(endView);
895 runningAnimators.remove(animation);
896 mCurrentAnimators.remove(animation);
1057 mTargetIds.remove((Intege
2412 static <T> ArrayList<T> remove(ArrayList<T> list, T item) { method in class:Transition.ArrayListManager
[all...]
/frameworks/base/core/java/android/widget/
H A DFastScroller.java394 public void remove() { method in class:FastScroller
395 mOverlay.remove(mTrackImage);
396 mOverlay.remove(mThumbImage);
397 mOverlay.remove(mPreviewImage);
398 mOverlay.remove(mPrimaryText);
399 mOverlay.remove(mSecondaryText);
/frameworks/base/core/jni/
H A Dandroid_util_Binder.cpp359 void remove(const sp<JavaDeathRecipient>& recipient);
417 list->remove(this);
505 void DeathRecipientList::remove(const sp<JavaDeathRecipient>& recipient) { function in class:DeathRecipientList
511 LOGDEATH("DRL @ %p : remove JDR %p", this, recipient.get());
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DMultiSelectManager.java154 // Update the selection to remove any disappeared IDs.
248 boolean itemChanged = selected ? mSelection.add(id) : mSelection.remove(id);
486 mSelection.remove(id);
758 // Now, iterate through the changes and actually add/remove them to/from the current
766 mProvisionalSelection.remove(id);
805 boolean remove(String id) { method in class:MultiSelectManager.Selection
807 mSelection.remove(id);
1056 mView.getOverlay().remove(mBand);
1761 mOnSelectionChangedListeners.remove(listener);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogController.java192 mCallbacks.remove(callback);
581 public void remove(Callbacks callback) { method in class:VolumeDialogController.C
582 mCallbackMap.remove(callback);
874 mState.states.remove(stream);
/frameworks/data-binding/internal-prebuilts/com/android/databinding/baseLibrary/1.0-rc3/
H A DbaseLibrary-1.0-rc3.jar ... startIndex long removed int endIndex long bitMask public synchronized void remove (java.lang.Object) int index Object callback private ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-baseLibrary.jar ... startIndex long removed int endIndex long bitMask public synchronized void remove (java.lang.Object) int index Object callback private ...
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java132 "Instantiate " + bse + " set remove fragment #" + mOps[pos]);
461 public FragmentTransaction remove(Fragment fragment) { method in class:BackStackRecord
775 lastInFragments.remove(containerId);
790 firstOutFragments.remove(containerId);
828 lastInFragments.remove(old.mContainerId);
1283 sharedElementTargets.remove(state.nonExistentView);
1431 state.hiddenFragmentViews.remove(fragment.mView);

Completed in 3040 milliseconds

123456