HomeSort by relevance Sort by last modified time
    Searched full:remove (Results 276 - 300 of 5021) sorted by null

<<11121314151617181920>>

  /frameworks/base/core/java/com/google/android/mms/util/
AbstractCache.java 44 // TODO Should remove the oldest or least hit cached entry
88 CacheEntry<V> v = mCacheMap.remove(key);
  /frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
ulist.h 45 inline void remove (const T& v) { ::ustl::remove (*this, v); } function in class:ustl::list
  /frameworks/base/opengl/libagl/
fixed_asm.S 36 movs r1, r0, lsl #1 /* remove bit sign */
51 mov r1, r0, lsl #1 /* remove bit sign */
  /frameworks/base/services/java/com/android/server/am/
UriPermission.java 46 r.readUriPermissions.remove(this);
59 r.writeUriPermissions.remove(this);
  /packages/apps/Contacts/src/com/android/contacts/
Collapser.java 71 // Remove the null items
75 itr.remove();
  /packages/apps/Settings/src/com/android/settings/
Utils.java 39 * activity is not found, it will remove the preference.
86 // Did not find a matching activity, so remove the preference
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/
LibraryProperties.java 173 mRemoveButton.setText("Remove");
180 mItemDataList.remove(data);
181 mTable.remove(mTable.getSelectionIndex());
197 ItemData data = mItemDataList.remove(index);
198 mTable.remove(index);
217 ItemData data = mItemDataList.remove(index);
218 mTable.remove(index);
269 // remove all previous library dependencies.
  /cts/tools/dasm/src/java_cup/
lalr_item_set.java 145 /** Remove a single item if it is in the set.
146 * @param itm the item to remove.
148 public void remove(lalr_item itm) throws internal_error method in class:lalr_item_set
155 /* remove it from hash table implementing set */
156 _all.remove(itm);
176 /** Remove (set subtract) a complete set.
177 * @param other the set to remove.
179 public void remove(lalr_item_set other) throws internal_error method in class:lalr_item_set
185 remove((lalr_item)e.nextElement()); method
190 /** Remove and return one item from the set (done in hash order). *
    [all...]
action_production.java 5 * production in order to remove an embedded action. Here we keep a bit
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
LinkedHashMapTest.java 321 it.remove();
323 it.remove();
326 list.remove(remove1);
327 list.remove(remove2);
344 it2.remove();
376 values.remove(new Integer(0));
378 "Removing from the values collection should remove from the original map",
384 * @tests java.util.LinkedHashMap#remove(java.lang.Object)
389 method = "remove",
394 // java.util.LinkedHashMap.remove(java.lang.Object
    [all...]
DictionaryTest.java 61 public Object remove(Object arg0) { method in class:DictionaryTest.Mock_Dictionary
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
IdentityHashMapTest.java 336 it.remove();
338 it.remove();
341 list.remove(remove1);
342 list.remove(remove2);
359 it2.remove();
425 * @tests java.util.IdentityHashMap#remove(java.lang.Object)
430 method = "remove",
435 // java.util.IdentityHashMap.remove(java.lang.Object)
437 Integer x = ((Integer) hm.remove(objArray2[9]));
438 assertTrue("Remove returned incorrect value", x.equals(new Integer(9)))
    [all...]
  /dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
PKIXCertPathValidatorSpi.java 769 nodes_i.remove();
    [all...]
  /bionic/libc/kernel/common/linux/
sysdev.h 40 int (*remove)(struct sys_device *); member in struct:sysdev_driver
  /build/target/board/
Android.mk 30 # TODO: Remove this check after people have had a chance to switch,
  /cts/tests/tests/example/
AndroidManifest.xml 18 remove this comment.
  /cts/tools/signature-tools/src/signature/converter/dex/
DexFactory.java 49 it.remove();
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableExtractor.java 32 * TODO remove this. Allow Rop-form LocalVariableInfo to be passed in,
153 primaryState.remove(primaryState.get(result.getReg()));
169 * to another, remove the association between the old register
178 primaryState.remove(previous);
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
ConcurrentMap.java 16 * <tt>putIfAbsent</tt>, <tt>remove</tt>, and <tt>replace</tt> methods.
66 * map.remove(key);
74 * @throws UnsupportedOperationException if the <tt>remove</tt> operation
81 boolean remove(Object key, Object value); method in interface:ConcurrentMap
  /dalvik/libcore/concurrent/src/test/java/tests/api/java/util/concurrent/
ArrayBlockingQueueTest.java 139 * remainingCapacity decreases on add, increases on remove
146 q.remove();
602 * remove removes next element, or throws NSEE if empty
607 assertEquals(i, ((Integer)q.remove()).intValue());
610 q.remove();
617 * remove(x) removes x and returns true if present
622 assertTrue(q.remove(new Integer(i)));
625 assertTrue(q.remove(new Integer(i)));
626 assertFalse(q.remove(new Integer(i+1)));
688 p.remove();
    [all...]
CopyOnWriteArraySetTest.java 174 * iterator remove is unsupported
181 it.remove();
213 * remove removes an element
217 full.remove(one);
PriorityBlockingQueueTest.java 152 q.remove();
153 q.remove();
166 q.remove();
582 * remove removes next element, or throws NSEE if empty
587 assertEquals(i, ((Integer)q.remove()).intValue());
590 q.remove();
597 * remove(x) removes x and returns true if present
602 assertTrue(q.remove(new Integer(i)));
605 assertTrue(q.remove(new Integer(i)));
606 assertFalse(q.remove(new Integer(i+1)))
    [all...]
  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
ThreadLocalTest.java 44 * @tests java.lang.ThreadLocal#remove()
49 method = "remove",
63 tl.remove();
215 threadLocal.remove();
  /dalvik/libcore/security/src/main/java/java/security/
DomainCombiner.java 32 * arrays. Implementers can simply merge the two arrays into one, remove
  /dalvik/libcore/security/src/main/java/java/security/acl/
LastOwnerException.java 21 * The exception that is thrown when an attempt is made to remove the

Completed in 718 milliseconds

<<11121314151617181920>>