Searched defs:remove (Results 76 - 100 of 110) sorted by relevance

12345

/frameworks/compile/mclinker/include/mcld/LD/
H A DEhFrame.h114 void remove(FDE& pFDE) { m_FDEs.remove(&pFDE); } function in class:mcld::EhFrame::CIE
/frameworks/native/libs/binder/
H A DMemoryDealer.cpp101 NODE* remove(NODE* node) { function in class:android::LinkedList
284 delete mList.remove(mList.head());
386 mList.remove(cur);
/frameworks/support/v4/java/android/support/v4/util/
H A DMapCollections.java60 public void remove() { method in class:MapCollections.ArrayIterator
94 public void remove() { method in class:MapCollections.MapIterator
218 public boolean remove(Object object) { method in class:MapCollections.EntrySet
303 public boolean remove(Object object) { method in class:MapCollections.KeySet
397 public boolean remove(Object object) { method in class:MapCollections.ValuesCollection
468 map.remove(it.next());
478 it.remove();
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp48 void DrmManagerClientImpl::remove(int uniqueId) { function in class:DrmManagerClientImpl
/frameworks/base/core/java/android/os/
H A DBaseBundle.java289 public void remove(String key) { method in class:BaseBundle
291 mMap.remove(key);
/frameworks/base/media/java/android/media/
H A DSubtitleTrack.java140 // remove past cues
142 mActiveCues.remove(cue);
144 it.remove();
173 mCues.remove(cue);
178 mRunsByID.remove(run.mRunID);
189 /* remove all cues (untangle all cross-links) */
416 cues.remove(cue);
418 mCues.remove(timeMs);
445 public void remove(Cue cue) { method in class:SubtitleTrack.CueList
508 public void remove() { method in class:SubtitleTrack.CueList.EntryIterator
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DProcessList.java621 public static final void remove(int pid) { method in class:ProcessList
H A DServiceRecord.java395 public StartItem findDeliveredStart(int id, boolean remove) { argument
400 if (remove) deliveredStarts.remove(i);
/frameworks/base/services/core/java/com/android/server/media/projection/
H A DMediaProjectionManagerService.java149 mCallbackDelegate.remove(callback);
166 IBinder.DeathRecipient deathRecipient = mDeathEaters.remove(token);
311 throw new SecurityException("Requires MANAGE_MEDIA_PROJECTION in order to remove "
420 mCallbackDelegate.remove(callback);
461 mCallbackDelegate.remove(callback);
519 public void remove(IMediaProjectionCallback callback) { method in class:MediaProjectionManagerService.CallbackDelegate
521 mClientCallbacks.remove(callback.asBinder());
525 public void remove(IMediaProjectionWatcherCallback callback) { method in class:MediaProjectionManagerService.CallbackDelegate
527 mWatcherCallbacks.remove(callback.asBinder());
/frameworks/base/services/core/java/com/android/server/wm/
H A DSession.java186 public void remove(IWindow window) { method in class:Session
500 mService.mSessions.remove(this);
/frameworks/base/tools/aapt/
H A DZipFile.cpp878 status_t ZipFile::remove(ZipEntry* pEntry) function in class:ZipFile
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java113 public void remove(IWindow arg0) throws RemoteException { method in class:BridgeWindowSession
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DRenderEngine.cpp351 void remove(EGLint attribute) { function in class:android::EGLAttributeVector
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRemotePlaybackClient.java124 * {@link MediaControlIntent#ACTION_REMOVE remove}.
211 * @param callback The callback to set. May be null to remove the previous callback.
378 * Sends a request to remove a media item from the queue.
399 public void remove(String itemId, Bundle extras, ItemActionCallback callback) { method in class:RemotePlaybackClient
/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/core/java/android/widget/
H A DFastScroller.java385 public void remove() { method in class:FastScroller
386 mOverlay.remove(mTrackImage);
387 mOverlay.remove(mThumbImage);
388 mOverlay.remove(mPreviewImage);
389 mOverlay.remove(mPrimaryText);
390 mOverlay.remove(mSecondaryText);
/frameworks/base/services/core/java/com/android/server/
H A DTelephonyRegistry.java77 * Eventually we may want to remove the notion of dummy value but for now this
387 remove(r.binder);
399 remove(callback.asBinder());
503 remove(r.binder);
513 remove(r.binder);
521 remove(r.binder);
529 remove(r.binder);
539 remove(r.binder);
547 remove(r.binder);
555 remove(
618 private void remove(IBinder binder) { method in class:TelephonyRegistry
[all...]
/frameworks/opt/net/voip/src/jni/rtp/
H A DAudioGroup.cpp73 // proxies. A firewall might remove a port mapping when there is no outgoing
481 bool remove(AudioStream *stream);
694 bool AudioGroup::remove(AudioStream *stream) function in class:__anon1453::AudioGroup
1026 void remove(JNIEnv *env, jobject thiz, jlong stream) function in namespace:__anon1453
1030 if (!stream || !group->remove((AudioStream *)stream)) {
1055 {"nativeRemove", "(J)V", (void *)remove},
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java135 "Instantiate " + bse + " set remove fragment #" + mOps[pos]);
455 public FragmentTransaction remove(Fragment fragment) { method in class:BackStackRecord
1383 state.hiddenFragmentViews.remove(fragment.mView);
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DAdapterHelperTest.java324 // TODO test MOVE then remove items in between.
325 // TODO test MOVE then remove it, make sure it is not dispatched
933 mPreLayoutItems.remove(item);
936 mTestAdapter.remove(start, count);
975 mItems.add(to, mItems.remove(from));
980 public void remove(int index, int count) { method in class:AdapterHelperTest.TestAdapter
982 mItems.remove(index);
1017 mItems.remove(op.positionStart);
1026 mItems.add(op.itemCount, mItems.remove(op.positionStart));
1033 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.java145 "Instantiate " + bse + " set remove fragment #" + mOps[pos]);
502 public FragmentTransaction remove(Fragment fragment) { method in class:BackStackRecord
581 /** TODO: remove this */
597 /** TODO: remove this */
1357 * After the transition has started, remove all targets that we added to the transitions
1421 * when they are removed later, a list match will suffice to remove the targets.
1423 * the removeTargets call will remove them unexpectedly.
1520 hiddenFragmentViews.remove(fragment.mView);
H A DDownloadManager.java962 // called with nothing to remove!
978 * Cancel downloads and remove them from the download manager. Each download will be stopped if
982 * @param ids the IDs of the downloads to remove
985 public int remove(long... ids) { method in class:DownloadManager
/frameworks/base/core/java/android/text/
H A DTextUtils.java335 * not remove any empty strings from the result. For example split("a,", "," ) returns {"a", ""}.
353 * split is empty. This returns []. This does not remove any empty strings from the result.
439 public void remove() { method in class:TextUtils.SimpleStringSplitter
/frameworks/base/core/java/android/transition/
H A DTransition.java530 TransitionValues end = unmatchedEnd.remove(view);
558 unmatchedStart.remove(startView);
559 unmatchedEnd.remove(endView);
585 unmatchedStart.remove(startView);
586 unmatchedEnd.remove(endView);
612 unmatchedStart.remove(startView);
613 unmatchedEnd.remove(endView);
883 runningAnimators.remove(animation);
884 mCurrentAnimators.remove(animation);
1045 mTargetIds.remove(targetI
2387 static <T> ArrayList<T> remove(ArrayList<T> list, T item) { method in class:Transition.ArrayListManager
[all...]

Completed in 6541 milliseconds

12345