/external/clang/include/clang/Edit/ |
EditsReceiver.h | 28 virtual void remove(CharSourceRange range);
|
/external/guava/guava/src/com/google/common/collect/ |
PeekingIterator.java | 37 * {@link #remove()}. 64 void remove(); method in interface:PeekingIterator
|
UnmodifiableIterator.java | 24 * An iterator that does not support {@link #remove}. 40 public final void remove() { method in class:UnmodifiableIterator
|
/external/mesa3d/src/glsl/ |
opt_redundant_jumps.cpp | 26 * Remove certain types of redundant jumps 70 then_jump->remove(); 71 else_jump->remove(); 76 /* If both branchs of the if-statement are now empty, remove the 80 ir->remove(); 89 /* If the last instruction of a loop body is a 'continue', remove it. 96 last->remove();
|
/external/nist-sip/java/gov/nist/core/ |
MultiValueMap.java | 8 public Object remove( K key, V item ); method in interface:MultiValueMap
|
/external/skia/include/core/ |
SkRefDict.h | 31 * If data is NULL, remove (if present) the entry matching name and call 40 * Remove the matching entry (if found) and unref its data. 42 void remove(const char name[]) { this->set(name, NULL); } function in class:SkRefDict 45 * Remove all entries, and unref() their associated data.
|
/external/webkit/LayoutTests/fast/js/resources/ |
select-options-remove.js | 1 description("This test checks the behavior of the remove() method on the select.options object."); 6 debug("1.1 Remove (object) from empty Options"); 8 shouldBe("select1.options.remove(value)", "undefined"); 13 debug("1.2 Remove (string) from empty Options"); 15 shouldBe("select1.options.remove(value)", "undefined"); 20 debug("1.3 Remove (float) from empty Options"); 22 shouldBe("select1.options.remove(value)", "undefined"); 27 debug("1.4 Remove (boolean) from empty Options"); 29 shouldBe("select1.options.remove(value)", "undefined"); 34 debug("1.5 Remove (undefined) from empty Options") [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLOptionsCollection.h | 42 void remove(int index);
|
/external/webkit/Source/WebCore/platform/network/ |
CredentialStorage.h | 40 static void remove(const ProtectionSpace&);
|
/external/webkit/Source/WebCore/storage/ |
IDBTransactionCoordinator.cpp | 71 m_startedTransactions.remove(transaction); 73 m_runningTransactions.remove(transaction); 75 m_transactions.remove(transaction); 106 m_startedTransactions.remove(transaction);
|
/external/webkit/Source/WebKit/android/smoke/ |
MessageThread.h | 49 // Remove all messages with the given object and member function. If 50 // member is null, remove all messages with the given object. 52 void remove(T* object, void (T::*member)(void)); 66 void remove(const Message& message); 80 void MessageQueue::remove(T* object, void (T::*member)(void)) { function in class:android::MessageQueue 82 remove(message);
|
/external/webkit/Source/WebKit/chromium/public/ |
WebAccessibilityCache.h | 57 virtual void remove(int) = 0;
|
/external/webkit/Source/WebKit2/Shared/ |
MutableArray.cpp | 51 m_entries.remove(index);
|
MutableDictionary.h | 46 void remove(const String& key);
|
/external/webkit/Source/WebKit2/WebProcess/Geolocation/ |
GeolocationPermissionRequestManager.cpp | 74 m_geolocationToIDMap.remove(it); 75 m_idToGeolocationMap.remove(it->second); 87 m_idToGeolocationMap.remove(it); 88 m_geolocationToIDMap.remove(geolocation);
|
/frameworks/support/volley/src/com/android/volley/toolbox/ |
ByteArrayPool.java | 96 mBuffersBySize.remove(i); 97 mBuffersByLastUse.remove(buf); 129 byte[] buf = mBuffersByLastUse.remove(0); 130 mBuffersBySize.remove(buf);
|
/libcore/luni/src/main/java/java/net/ |
CookieStore.java | 84 * Remove the specified cookie from the store. 95 boolean remove(URI uri, HttpCookie cookie); method in interface:CookieStore
|
/libcore/luni/src/main/java/java/util/ |
Dictionary.java | 99 * the key to remove. 105 public abstract V remove(Object key); method in class:Dictionary
|
ListIterator.java | 109 * {@code remove} or {@code add} have already been called after 112 public void remove(); method in interface:ListIterator 128 * {@code remove} or {@code add} have already been called after
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
TexturesGenerator.cpp | 79 mRequestedOperations.remove(i); 80 mRequestedOperationsHash.remove(operation->uniquePtr()); 104 mRequestedOperationsHash.remove(current->uniquePtr()); 114 mRequestedOperations.remove(i); 115 mRequestedOperationsHash.remove(next->uniquePtr()); 133 mRequestedOperations.remove(currentIndex); 134 mRequestedOperationsHash.remove(current->uniquePtr());
|
/libcore/luni/src/test/java/libcore/java/lang/ref/ |
ReferenceQueueTest.java | 30 referenceQueue.remove(-1); 39 referenceQueue.remove(Long.MAX_VALUE); 54 referenceQueue.remove(1000); 63 assertNotNull(referenceQueue.remove()); 69 assertNotNull(referenceQueue.remove(1000)); 76 referenceQueue.remove(); 86 referenceQueue.remove(1000);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
ListRemoveAtIndexTester.java | 30 * A generic JUnit test which tests {@code remove(int)} operations on a list. 43 getList().remove(0); 44 fail("remove(i) should throw"); 53 getList().remove(-1); 54 fail("remove(-1) should throw"); 63 getList().remove(getNumElements()); 64 fail("remove(size) should throw"); 90 "remove(%d) should return the element at index %d", index, index), 91 getList().get(index), getList().remove(index)); 93 expected.remove(index) [all...] |
CollectionRemoveTester.java | 32 * A generic JUnit test which tests {@code remove} operations on a collection. 46 assertTrue("remove(present) should return true", 47 collection.remove(samples.e0)); 48 assertEquals("remove(present) should decrease a collection's size by one.", 55 assertFalse("remove(notPresent) should return false", 56 collection.remove(samples.e3)); 66 assertTrue("remove(null) should return true", collection.remove(null)); 67 assertEquals("remove(present) should decrease a collection's size by one.", 76 collection.remove(samples.e0) [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
OldPriorityQueueTest.java | 49 // Even though "BB" is equivalent to "AA" using the string length comparator, remove() 51 assertFalse(queue.remove("BB")); 52 assertTrue(queue.remove("AA")); 59 assertFalse(integerQueue.remove(111)); 60 assertFalse(integerQueue.remove(null)); 61 assertFalse(integerQueue.remove(""));
|
/external/guava/guava-tests/test/com/google/common/collect/ |
AbstractTableTest.java | 134 assertNull(table.remove("cat", 1)); 135 assertNull(table.remove("bar", 3)); 137 assertEquals((Character) 'c', table.remove("foo", 3)); 142 assertNull(table.remove(null, 1)); 143 assertNull(table.remove("foo", null)); 144 assertNull(table.remove(null, null)); 148 table.remove("foo", 3); 160 table.remove("foo", 3); 162 table.remove("foo", 1);
|