Searched defs:remove (Results 126 - 150 of 593) sorted by relevance

1234567891011>>

/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DLatencyPriorityQueue.cpp111 // Since it is available, it must be in the priority queue. First remove it.
112 remove(OnlyAvailablePred);
133 void LatencyPriorityQueue::remove(SUnit *SU) { function in class:LatencyPriorityQueue
/external/syslinux/gpxe/src/include/gpxe/
H A Ddevice.h104 void ( * remove ) ( struct root_device *rootdev ); member in struct:root_driver
H A Disa.h60 void ( * remove ) ( struct isa_device *isa ); member in struct:isa_driver
H A Dmca.h79 void ( * remove ) ( struct mca_device *mca ); member in struct:mca_driver
/external/testng/src/main/java/org/testng/collections/
H A DMultiMap.java70 public C remove(K key) { method in class:MultiMap
74 public boolean remove(K key, V value) { method in class:MultiMap
79 return values.remove(value);
83 return m_objects.remove(key);
/external/v8/testing/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::__anon21919
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/volley/src/main/java/com/android/volley/
H A DCache.java57 public void remove(String key); method in interface:Cache
/external/volley/src/test/java/com/android/volley/mock/
H A DMockCache.java58 public void remove(String key) { method in class:MockCache
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DDynamicTableModel.java282 public void remove() { method in class:DynamicTableModel.TableModelIterator
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenRewriteStream.as159 public function remove(index:int, programName:String = DEFAULT_PROGRAM_NAME):void { function
241 indexToOp[i] = undefined; // remove so any left have index size-1
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java74 /** Get and remove first element in queue; override FastQueue.remove();
77 public T remove() { method in class:LookaheadStream
88 /** Make sure we have at least one element to remove, even if EOF */
91 prevElement = remove();
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntervalSet.java122 iter.remove(); // remove this one
167 intervals.remove(i); // remove next one
682 public void remove(int el) { method in class:IntervalSet
683 throw new NoSuchMethodError("IntervalSet.remove() unimplemented");
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DMultidimensionalCounter.java152 public void remove() { method in class:MultidimensionalCounter.Iterator
/external/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java149 public final void remove() method in class:BasicTokenIterator
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/
H A Dset.py50 def remove(self, item): member in class:Set
52 self.items.remove(item)
57 self.items.remove(item)
110 # we make a copy of the list so that we can remove items from
114 self.items.remove(item)
/external/clang/include/clang/AST/
H A DDeclContextInternals.h105 void remove(NamedDecl *D) { function in struct:clang::StoredDeclsList
/external/droiddriver/src/io/appium/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/guava/guava/src/com/google/common/collect/
H A DAbstractMapBasedMultiset.java121 public void remove() {
124 backingEntries.remove();
157 * a more efficient remove() call.
186 public void remove() { method in class:AbstractMapBasedMultiset.MapBasedMultisetIterator
193 entryIterator.remove();
236 @Override public int remove(@Nullable Object element, int occurrences) { method in class:AbstractMapBasedMultiset
254 backingMap.remove(element);
269 existingCounter = backingMap.remove(element);
H A DAbstractMultiset.java36 * {@link #remove(Object, int)} to enable modifications to the multiset.
89 @Override public boolean remove(@Nullable Object element) { method in class:AbstractMultiset
90 return remove(element, 1) > 0;
94 public int remove(@Nullable Object element, int occurrences) { method in class:AbstractMultiset
H A DAbstractTable.java89 public V remove(@Nullable Object rowKey, @Nullable Object columnKey) { method in class:AbstractTable
133 public boolean remove(@Nullable Object o) { method in class:AbstractTable.CellSet
H A DConcurrentHashMultiset.java63 * AtomicInteger results in zero, we compareAndSet the value to zero; if that succeeds, we remove
65 * about to be removed, so this operation may remove it (often by replacing it with a new
234 // newValue can't == 0, so no need to check & remove
242 // In the case of a concurrent remove, we might observe a zero value, which means another
243 // thread is about to remove (element, existingCounter) from the map. Rather than wait,
263 * @param occurrences the number of occurrences of the element to remove
268 * TODO(cpovirk): remove and removeExactly currently accept null inputs only
273 * we'll want to remove @Nullable, add an eager checkNotNull, and loosen up
276 @Override public int remove(@Nullable Object element, int occurrences) { method in class:ConcurrentHashMultiset
292 // Just CASed to 0; remove th
[all...]
H A DFilteredEntryMultimap.java104 return MoreObjects.firstNonNull(asMap().remove(key), unmodifiableEmptyCollection());
108 // These return false, rather than throwing a UOE, on remove calls.
158 entryIterator.remove();
192 public Collection<V> remove(@Nullable Object key) { method in class:FilteredEntryMultimap.AsMap
204 itr.remove();
231 public boolean remove(@Nullable Object o) {
232 return AsMap.this.remove(o) != null;
288 public boolean remove(@Nullable Object o) {
300 entryIterator.remove();
335 public int remove( method in class:FilteredEntryMultimap.Keys
[all...]
H A DFilteredKeyMultimap.java191 public boolean remove(@Nullable Object o) { method in class:FilteredKeyMultimap.Entries
197 return unfiltered.remove(entry.getKey(), entry.getValue());

Completed in 602 milliseconds

1234567891011>>