Searched defs:remove (Results 151 - 175 of 552) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashCountedSet.h73 bool remove(const ValueType& value) { return remove(find(value)); } function in class:WTF::HashCountedSet
74 bool remove(iterator);
98 inline bool HashCountedSet<T, U, V, W>::remove(iterator it) function in class:WTF::HashCountedSet
111 m_impl.remove(it);
121 m_impl.remove(it);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFileSystem.h90 // It is an error to try to remove a directory that is not empty.
93 virtual void remove(const WebURL& path, WebFileSystemCallbacks) { BLINK_ASSERT_NOT_REACHED(); } function in class:blink::WebFileSystem
/external/chromium_org/third_party/icu/source/common/
H A Dhash.h80 void* remove(const UnicodeString& key);
174 inline void* Hashtable::remove(const UnicodeString& key) { function in class:Hashtable
/external/chromium_org/third_party/jinja2/
H A Dbccache.py231 from os import remove namespace
235 remove(path.join(self.directory, filename))
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dopt_dead_code_local.cpp83 entry->remove();
87 entry->remove();
179 printf("looking for %s.0x%01x to remove\n", var->name,
188 int remove = entry->available & ir->write_mask; local
193 remove, entry->ir->write_mask & ~remove);
195 if (remove) {
204 entry->ir->write_mask &= ~remove;
205 entry->available &= ~remove;
208 entry->ir->remove();
[all...]
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayList.cpp126 void SkDisplayList::remove(SkActive* active) { function in class:SkDisplayList
129 fActiveList.remove(index); // !!! could use shuffle instead
/external/chromium_org/third_party/skia/src/gpu/
H A DGrOrderedSet.h49 * @param iter iterator of item to remove. Must be valid (not end()).
51 void remove(const Iter& iter);
148 void GrOrderedSet<T,C>::remove(const typename GrOrderedSet<T,C>::Iter& iter) { function in class:GrOrderedSet
150 fRBTree.remove(iter.getTreeIter());
/external/chromium_org/v8/benchmarks/spinning-balls/
H A Dsplay-tree.js95 * @param {number} key Key to find and remove from the tree.
98 SplayTree.prototype.remove = function(key) {
/external/chromium_org/v8/benchmarks/
H A Dsplay.js117 if (greatest == null) splayTree.remove(key);
118 else splayTree.remove(greatest.key);
190 * @param {number} key Key to find and remove from the tree.
193 SplayTree.prototype.remove = function(key) {
/external/chromium_org/v8/tools/
H A Dsplaytree.js97 * @param {number} key Key to find and remove from the tree.
100 SplayTree.prototype.remove = function(key) {
/external/clang/include/clang/AST/
H A DDeclContextInternals.h105 void remove(NamedDecl *D) { function in struct:clang::StoredDeclsList
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpecSet.java240 * @param toRemove {@code non-null;} register to remove.
242 public void remove(RegisterSpec toRemove) { method in class:RegisterSpecSet
/external/droiddriver/src/com/google/android/droiddriver/
H A DPoller.java56 public void remove() {}
62 void remove(); method in interface:Poller.ListenerRemover
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/presentation/
H A DButtonPropertyEditorPresentationImpl.java54 Control control = m_propertyToControl.remove(propertyTable, property);
100 // when Control disposed, remove Control/Property from map to avoid memory leak
104 m_propertyToControl.remove(propertyTable, property);
216 Control remove(PropertyTable propertyTable, Property property) { method in class:ButtonPropertyEditorPresentationImpl.PropertyToControlMap
217 return m_map.remove(Pair.create(propertyTable, property));
/external/emma/core/java12/com/vladium/util/
H A DIntIntMap.java215 public void remove (final int key) method in class:IntIntMap
/external/gtest/test/
H A Dgtest-filepath_test.cc67 // Windows CE doesn't have the remove C function.
68 int remove(const char* path) { function in namespace:testing::internal::__anon21602
504 remove(testdata_file_.c_str());
505 remove(unique_file0_.c_str());
506 remove(unique_file1_.c_str());
511 remove(testdata_file_.c_str());
512 remove(unique_file0_.c_str());
513 remove(unique_file1_.c_str());
/external/guava/guava/src/com/google/common/collect/
H A DAbstractMapBasedMultiset.java126 public void remove() {
128 "no calls to next() since the last call to remove()");
130 backingEntries.remove();
163 * a more efficient remove() call.
192 public void remove() { method in class:AbstractMapBasedMultiset.MapBasedMultisetIterator
194 "no calls to next() since the last call to remove()");
200 entryIterator.remove();
249 @Override public int remove(@Nullable Object element, int occurrences) { method in class:AbstractMapBasedMultiset
267 backingMap.remove(element);
282 existingCounter = backingMap.remove(elemen
368 @Override public boolean remove(Object element) { method in class:AbstractMapBasedMultiset.MapBasedElementSet
[all...]
H A DAbstractMultiset.java36 * {@link #remove(Object, int)} to enable modifications to the multiset.
89 @Override public boolean remove(Object element) { method in class:AbstractMultiset
90 return remove(element, 1) > 0;
94 public int remove(Object element, int occurrences) { method in class:AbstractMultiset
H A DConcurrentHashMultiset.java57 * AtomicInteger results in zero, we compareAndSet the value to zero; if that succeeds, we remove
59 * about to be removed, so this operation may remove it (often by replacing it with a new
242 // newValue can't == 0, so no need to check & remove
250 // In the case of a concurrent remove, we might observe a zero value, which means another
251 // thread is about to remove (element, existingCounter) from the map. Rather than wait,
271 * @param occurrences the number of occurrences of the element to remove
275 @Override public int remove(@Nullable Object element, int occurrences) { method in class:ConcurrentHashMultiset
291 // Just CASed to 0; remove the entry to clean up the map. If the removal fails,
293 countMap.remove(element, existingCounter);
307 * <p>This method, in contrast to {@link #remove(Objec
551 @Override public boolean remove(Object object) { method in class:ConcurrentHashMultiset.EntrySet
[all...]
H A DForwardingCollection.java89 public boolean remove(Object object) { method in class:ForwardingCollection
90 return delegate().remove(object);
162 * A sensible definition of {@link #remove} in terms of {@link #iterator},
163 * using the iterator's {@code remove} method. If you override {@link
164 * #iterator}, you may wish to override {@link #remove} to forward to this
173 iterator.remove();
182 * using the iterator's {@code remove} method. If you override {@link
194 * using the iterator's {@code remove} method. If you override {@link
206 * using the iterator's {@code remove} method. If you override {@link
216 iterator.remove();
[all...]
H A DForwardingList.java100 public E remove(int index) { method in class:ForwardingList
101 return delegate().remove(index);
H A DForwardingMap.java79 public V remove(Object object) { method in class:ForwardingMap
80 return delegate().remove(object);
149 * A sensible, albeit inefficient, definition of {@link #remove} in terms of
151 * #entrySet}, you may wish to override {@link #remove} to forward to this
154 * <p>Alternately, you may wish to override {@link #remove} with {@code
155 * keySet().remove}, assuming that approach would not lead to an infinite
166 entryIterator.remove();
184 entryIterator.remove();
191 * {@link ForwardingMap#isEmpty}, {@link ForwardingMap#remove}, {@link
257 * ForwardingMap#remove}, an
[all...]
H A DForwardingMultimap.java112 public boolean remove(@Nullable Object key, @Nullable Object value) { method in class:ForwardingMultimap
113 return delegate().remove(key, value);
H A DForwardingMultiset.java71 public int remove(Object element, int occurrences) { method in class:ForwardingMultiset
72 return delegate().remove(element, occurrences);
125 entryIterator.remove();
171 * A sensible definition of {@link #remove(Object)} in terms of {@link
172 * #remove(Object, int)}. If you override {@link #remove(Object, int)}, you
173 * may wish to override {@link #remove(Object)} to forward to this
179 return remove(element, 1) > 0;
210 * #count(Object)}, {@link #add(Object, int)}, and {@link #remove(Object,
240 * ForwardingMultiset#entrySet}, and {@link ForwardingMultiset#remove(Objec
[all...]
H A DForwardingTable.java110 public V remove(Object rowKey, Object columnKey) { method in class:ForwardingTable
111 return delegate().remove(rowKey, columnKey);

Completed in 7046 milliseconds

1234567891011>>