Searched defs:remove (Results 1 - 25 of 77) sorted by last modified time

1234

/frameworks/wilhelm/src/itf/
H A DIDynamicInterfaceManagement.c234 // Mark operation pending (not necessary; remove is synchronous with mutex locked)
245 // The remove hook is called with mutex locked
246 VoidHook remove = MPH_init_table[MPH].mRemove; local
247 if (NULL != remove) {
248 (*remove)(thisItf);
H A DIObject.c561 // If object is published, then remove it from exposure to sync thread and debugger
596 // The remove hook is called with mutex locked
598 VoidHook remove = MPH_init_table[x->mMPH].mRemove; local
599 if (NULL != remove) {
600 (*remove)(thisItf);
/frameworks/support/renderscript/v8/rs_support/
H A DrsObjectBase.cpp48 // While the normal practice is to call remove before we call
51 // cases we need to remove ourself here.
53 remove();
102 ref->remove();
178 void ObjectBase::remove() const { function in class:ObjectBase
179 //ALOGV("calling remove rsc %p", mRSC);
/frameworks/support/v4/java/android/support/v4/app/
H A DBackStackRecord.java120 "Instantiate " + bse + " set remove fragment #" + mOps[pos]);
433 public FragmentTransaction remove(Fragment fragment) { method in class:BackStackRecord
H A DFragmentTransaction.java61 * essentially the same as calling {@link #remove(Fragment)} for all
85 public abstract FragmentTransaction remove(Fragment fragment); method in class:FragmentTransaction
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java106 public void remove(long key) { method in class:LongSparseArray
H A DLruCache.java162 map.remove(key);
176 public final V remove(K key) { method in class:LruCache
183 previous = map.remove(key);
199 * {@link #remove}, or replaced by a call to {@link #put}. The default
206 * if the removal was caused by a {@link #put} or {@link #remove}.
209 * an eviction or a {@link #remove}.
H A DSparseArrayCompat.java86 public void remove(int key) { method in class:SparseArrayCompat
104 * @param size Number of mappings to remove
/frameworks/support/volley/src/com/android/volley/
H A DCache.java54 public void remove(String key); method in interface:Cache
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DDiskBasedCache.java120 remove(key);
209 public synchronized void remove(String key) { method in class:DiskBasedCache
264 iterator.remove();
300 mEntries.remove(key);
H A DNoCache.java43 public void remove(String key) { method in class:NoCache
/frameworks/support/volley/tests/src/com/android/volley/mock/
H A DMockCache.java58 public void remove(String key) { method in class:MockCache
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java66 public void remove() { method in class:ExportTestProvider.MockEntityIterator
67 throw new UnsupportedOperationException("remove not supported");
/frameworks/rs/
H A DrsObjectBase.cpp48 // While the normal practice is to call remove before we call
51 // cases we need to remove ourself here.
53 remove();
102 ref->remove();
178 void ObjectBase::remove() const { function in class:ObjectBase
179 //ALOGV("calling remove rsc %p", mRSC);
/frameworks/ex/common/java/com/android/common/
H A DRfc822Validator.java74 * Specify if the validator should remove invalid tokens instead of trying
78 * @param remove true to remove tokens with the wrong format, false to
81 public void setRemoveInvalid(boolean remove) { argument
82 mRemoveInvalid = remove;
140 // Otherwise, remove the illegal characters on both sides of the '@'
/frameworks/native/include/utils/
H A DGenerationCache.h77 bool remove(const K& key);
180 bool GenerationCache<K, V>::remove(const K& key) { function in class:android::GenerationCache
H A DSortedVector.h119 ssize_t remove(const TYPE&);
121 //! remove several items
123 //! remove one item
231 ssize_t SortedVector<TYPE>::remove(const TYPE& item) { function in class:android::SortedVector
232 return SortedVectorImpl::remove(&item);
/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/native/libs/utils/
H A DString16.cpp378 status_t String16::remove(size_t len, size_t begin) function in class:android::String16
/frameworks/native/libs/utils/tests/
H A DBasicHashtable_test.cpp134 static bool remove(BasicHashtable<TKey, key_value_pair_t<TKey, TValue> >& h, function in namespace:android
229 ASSERT_TRUE(remove(h, 8));
256 ASSERT_TRUE(remove(h, int(i))) << "i = " << i;
295 ASSERT_TRUE(remove(h, K)) << "i = " << i;
353 ASSERT_TRUE(remove(h, ComplexKey(0)));
356 ASSERT_TRUE(remove(h, ComplexKey(1)));
461 ASSERT_TRUE(remove(h, ComplexKey(0)));
554 // remove copies shared contents
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp314 void remove(EGLint attribute) { function in class:android::EGLAttributeVector
350 attribs.remove(EGL_FRAMEBUFFER_TARGET_ANDROID);
358 attribs.remove(EGL_RECORDABLE_ANDROID);
367 attribs.remove(EGL_RED_SIZE);
368 attribs.remove(EGL_GREEN_SIZE);
369 attribs.remove(EGL_BLUE_SIZE);
1115 ALOGW("trying to remove the main display");
1123 // recreating the DisplayDevice, so we just remove it
1490 // remove where there are opaque FB layers. however, on some
1630 ssize_t index = mCurrentState.layersSortedByZ.remove(layerBas
[all...]
/frameworks/base/tools/aapt/
H A DZipFile.cpp878 status_t ZipFile::remove(ZipEntry* pEntry) function in class:ZipFile
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DLruCache.java59 * value of null from {@link #get}, {@link #put} or {@link #remove} is
226 map.remove(key);
240 public final V remove(K key) { method in class:LruCache
247 previous = map.remove(key);
263 * {@link #remove}, or replaced by a call to {@link #put}. The default
270 * if the removal was caused by a {@link #put} or {@link #remove}.
273 * an eviction or a {@link #remove}.
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeWindowSession.java111 public void remove(IWindow arg0) throws RemoteException { method in class:BridgeWindowSession
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java33 * Because our usage means that we never actually call {@link #remove(int)} or {@link #delete(int)},
107 public void remove(int key) { method in class:SparseWeakArray

Completed in 346 milliseconds

1234