Searched defs:remove (Results 76 - 100 of 593) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3bitset.h102 void (*remove) (struct ANTLR3_BITSET_struct * bitset, ANTLR3_UINT32 bit); member in struct:ANTLR3_BITSET_struct
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DLookaheadStream.h67 /** Get and remove first element in queue; override FastQueue.remove() */
68 public T remove() { function in class:FastQueue
79 /** Make sure we have at least one element to remove, even if EOF */
80 public void consume() { sync(1); remove(); }
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
H A DBitSet.pm167 sub remove : method { subroutine
294 =item C<remove>
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DIntSet.java76 /** remove this element from this set */
77 void remove(int el); method in interface:IntSet
/external/apache-http/src/org/apache/http/impl/conn/
H A DIdleConnectionHandler.java72 * {@link #remove} or {@link #closeIdleConnections} is called.
76 * @see #remove
97 public boolean remove(HttpConnection connection) { method in class:IdleConnectionHandler
98 TimeValues times = connectionToTimes.remove(connection);
140 connectionIter.remove();
167 connectionIter.remove();
/external/autotest/frontend/client/src/autotest/tko/
H A DHeaderFieldCollection.java56 * We perform strict input checking here, and both add() and remove() use this.
100 public void remove() {
101 baseIterator.remove();
102 fieldsByName.remove(lastElement.getName());
103 fieldsBySqlName.remove(lastElement.getSqlName());
136 public boolean remove(Object o) { method in class:HeaderFieldCollection
142 orderedFields.remove(field);
143 fieldsByName.remove(field.getName());
144 fieldsBySqlName.remove(field.getSqlName());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributeTable.java232 public AttributeTable remove(ASN1ObjectIdentifier attrType) method in class:AttributeTable
236 newTable.attributes.remove(attrType);
/external/emma/core/java12/com/vladium/jcd/cls/
H A DAttributeCollection.java175 public Attribute_info remove (final int offset) method in class:AttributeCollection
177 final Attribute_info result = (Attribute_info) m_attributes.remove (offset);
H A DMethodCollection.java121 public Method_info remove (final int offset) method in class:MethodCollection
123 return (Method_info) m_methods.remove (offset);
/external/emma/core/java12/com/vladium/util/
H A DObjectIntMap.java208 public void remove (final Object key) method in class:ObjectIntMap
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DMemoryCache.java44 Resource<?> remove(Key key); method in interface:MemoryCache
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DLruCache.java132 * @param key The key to remove the item at.
134 public Y remove(T key) { method in class:LruCache
135 final Y value = cache.remove(key);
161 cache.remove(key);
/external/google-breakpad/src/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::__anon6877
522 remove(testdata_file_.c_str());
523 remove(unique_file0_.c_str());
524 remove(unique_file1_.c_str());
529 remove(testdata_file_.c_str());
530 remove(unique_file0_.c_str());
531 remove(unique_file1_.c_str());
/external/googletest/googletest/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::__anon7024
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 DAbstractRangeSet.java46 public void remove(Range<C> range) { method in class:AbstractRangeSet
52 remove(Range.<C>all());
75 remove(range);
H A DHashBasedTable.java34 * #columnMap()} have iterators that don't support {@code remove()}. Otherwise,
142 @Override public V remove( method in class:HashBasedTable
144 return super.remove(rowKey, columnKey);
H A DRangeMap.java87 * before and after a call to {@code remove(range)}. If {@code range.contains(k)}, then
88 * after a call to {@code remove(range)}, {@code get(k)} will return {@code null}.
90 void remove(Range<K> range); method in interface:RangeMap
109 * except for {@code asMapOfRanges().iterator().remove()}.
H A DRangeSet.java36 * rangeSet.remove(Range.open(5, 10)); // splits [1, 10]; {[1, 5], [10, 10], [11, 20)}}</pre>
107 * {@link #remove}, and vice versa.
143 * @throws UnsupportedOperationException if this range set does not support the {@code remove}
146 void remove(Range<C> range); method in interface:RangeSet
152 * <p>This is equivalent to {@code remove(Range.all())}.
176 * <p>This is equivalent to calling {@link #remove} on each of the ranges in {@code other} in
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DAbstractMapBasedMultiset.java118 public void remove() {
121 backingEntries.remove();
154 * a more efficient remove() call.
183 public void remove() { method in class:AbstractMapBasedMultiset.MapBasedMultisetIterator
190 entryIterator.remove();
233 @Override public int remove(@Nullable Object element, int occurrences) { method in class:AbstractMapBasedMultiset
251 backingMap.remove(element);
266 existingCounter = backingMap.remove(element);
H A DImmutableCollection.java53 public final boolean remove(Object object) { method in class:ImmutableCollection
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DConcurrentHashMap.java64 public boolean remove(Object key, Object value) { method in class:ConcurrentHashMap
66 remove(key);
122 @Override public V remove(Object key) { method in class:ConcurrentHashMap
126 return backingMap.remove(key);
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
H A DPeekingIteratorTest.java51 * later verify that {@link PeekingIterator#remove()} removes the
52 * same elements as the reference's iterator {@code #remove()}.
159 /* Should complain on attempt to remove() after peek(). */
161 peekingIterator.remove();
162 fail("remove() should throw IllegalStateException after a peek()");
165 assertEquals("After remove() throws exception, peek should still be ok",
168 /* Should recover to be able to remove() after next(). */
170 peekingIterator.remove();
200 public void remove() { method in class:PeekingIteratorTest.ThrowsAtEndIterator
201 iterator.remove();
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedSetTest.java125 @Override public boolean remove(@Nullable Object o) { method in class:SynchronizedSetTest.TestSet
127 return super.remove(o);
/external/icu/icu4c/source/common/unicode/
H A Denumset.h41 inline void remove(T toRemove) { set(toRemove, 0); } function in class:EnumSet
/external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
H A DPollingsQueue.java187 public synchronized void remove(PollingTask task) { method in class:PollingsQueue
203 mPollingTasks.remove(i);

Completed in 473 milliseconds

1234567891011>>