Searched refs:remove (Results 251 - 275 of 1873) sorted by relevance

<<11121314151617181920>>

/external/skia/src/core/
H A DSkMetaData.cpp117 (void)this->remove(name, type);
245 bool SkMetaData::remove(const char name[], Type type) { function in class:SkMetaData
274 return this->remove(name, kS32_Type);
279 return this->remove(name, kScalar_Type);
284 return this->remove(name, kString_Type);
289 return this->remove(name, kPtr_Type);
294 return this->remove(name, kBool_Type);
298 return this->remove(name, kData_Type);
/external/skia/src/gpu/
H A DGrSurface.cpp69 // remove any previous version of this file
70 remove(filename);
74 remove(filename); // remove any partial file
H A DGrTraceMarker.cpp32 void GrTraceMarkerSet::remove(const GrGpuTraceMarker& marker) { function in class:GrTraceMarkerSet
35 this->fMarkerArray.remove(index);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyKeyStore.java93 Cert.remove(alias);
108 Cert.remove(alias);
111 Chain.remove(alias);
131 Keys.remove(alias);
132 Chain.remove(alias);
136 Cert.remove(alias);
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DLruBitmapPool.java120 tracker.remove(result);
151 tracker.remove(removed);
181 void remove(Bitmap bitmap); method in interface:LruBitmapPool.BitmapTracker
199 public void remove(Bitmap bitmap) { method in class:LruBitmapPool.ThrowingBitmapTracker
201 throw new IllegalStateException("Cannot remove bitmap not in tracker");
203 bitmaps.remove(bitmap);
214 public void remove(Bitmap bitmap) { method in class:LruBitmapPool.NullBitmapTracker
/external/guava/guava-testlib/test/com/google/common/collect/testing/
H A DIteratorTesterTest.java103 * calls to remove() will incorrectly throw an IllegalStateException,
133 public void remove() { method in class:IteratorTesterTest.IteratorWithSunJavaBug6529795
137 iterator.remove();
143 /* Choose 4 steps to get sequence [next, next, next, remove] */
237 public void remove() {
274 public void remove() {
299 public void remove() {
346 public void remove() { method in class:IteratorTesterTest.ThrowingIterator
/external/jmonkeyengine/engine/src/core/com/jme3/util/
H A DSafeArrayList.java62 * <li>The ListIterators returned by this class only support the remove()
64 * Even after ListIterator.remove() or Iterator.remove() is called, this change
84 // the list. This was the callers couldn't remove a child
189 public boolean remove(Object o) { method in class:SafeArrayList
190 boolean result = getBuffer().remove(o);
274 public E remove(int index) { method in class:SafeArrayList
275 E result = getBuffer().remove(index);
383 public void remove() { method in class:SafeArrayList.ArrayIterator
387 // We'll just remove(elemen
[all...]
/external/llvm/unittests/Support/
H A DPath.cpp319 void TearDown() override { ASSERT_NO_ERROR(fs::remove(TestDirectory.str())); }
346 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
396 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
397 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
398 ASSERT_EQ(fs::remove(Twine(TempPath2), false),
424 ASSERT_NO_ERROR(fs::remove(Twine(TempPath)));
427 ASSERT_NO_ERROR(fs::remove(Twine(TempPath2)));
450 ASSERT_NO_ERROR(fs::remove(Twine(TempPath)));
459 ASSERT_NO_ERROR(fs::remove(Twine(TestDirectory) + "foo"));
481 ASSERT_NO_ERROR(fs::remove(ThisDi
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DLazyStringArrayList.java160 public String remove(int index) { method in class:LazyStringArrayList
161 Object o = list.remove(index);
301 public byte[] remove(int index) { method in class:LazyStringArrayList.ByteArrayListView
302 Object o = list.remove(index);
350 public ByteString remove(int index) { method in class:LazyStringArrayList.ByteStringListView
351 Object o = list.remove(index);
H A DSmallSortedMap.java252 final Entry lastEntryInArray = entryList.remove(maxArraySize - 1);
278 public V remove(Object o) { method in class:SmallSortedMap
287 // call remove() if it is non-empty.
291 return overflowEntries.remove(key);
297 final V removed = entryList.remove(index).getValue();
304 iterator.remove();
512 public boolean remove(Object o) { method in class:SmallSortedMap.EntrySet
516 SmallSortedMap.this.remove(entry.getKey());
556 public void remove() { method in class:SmallSortedMap.EntryIterator
558 throw new IllegalStateException("remove() wa
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DAbstractBiMap.java127 inverse().remove(value);
144 @Override public V remove(@Nullable Object key) { method in class:AbstractBiMap
149 V oldValue = delegate.remove(key);
155 inverse.delegate.remove(oldValue);
194 @Override public boolean remove(Object key) { method in class:AbstractBiMap.KeySet
268 @Override public boolean remove(Object object) { method in class:AbstractBiMap.EntrySet
275 inverse.delegate.remove(entry.getValue());
281 esDelegate.remove(entry);
321 @Override public void remove() {
324 iterator.remove();
[all...]
H A DFilteredEntryMultimap.java104 return Objects.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 DAbstractMapBasedMultimap.java255 Collection<V> collection = map.remove(key);
389 * If collection is empty, remove it from {@code AbstractMapBasedMultimap.this.map}.
396 map.remove(key);
488 public void remove() { method in class:AbstractMapBasedMultimap.WrappedCollection.WrappedIterator
489 delegateIterator.remove();
555 @Override public boolean remove(Object o) { method in class:AbstractMapBasedMultimap.WrappedCollection
557 boolean changed = delegate.remove(o);
732 public V remove(int index) { method in class:AbstractMapBasedMultimap.WrappedList
734 V value = getListDelegate().remove(index);
863 public void remove() {
875 @Override public boolean remove(Object key) { method in class:AbstractMapBasedMultimap.KeySet
993 public void remove() { method in class:AbstractMapBasedMultimap.Itr
1110 @Override public Collection<V> remove(Object key) { method in class:AbstractMapBasedMultimap.AsMap
1165 @Override public boolean remove(Object o) { method in class:AbstractMapBasedMultimap.AsMap.AsMapEntries
1194 public void remove() { method in class:AbstractMapBasedMultimap.AsMap.AsMapIterator
[all...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DSortedMultisetTestSuiteBuilder.java158 if (!features.remove(CollectionFeature.SERIALIZABLE_INCLUDING_VIEWS)) {
159 features.remove(CollectionFeature.SERIALIZABLE);
190 extremeValues.remove(0);
191 extremeValues.remove(0);
194 extremeValues.remove(extremeValues.size() - 1);
195 extremeValues.remove(extremeValues.size() - 1);
255 if (!features.remove(CollectionFeature.SERIALIZABLE_INCLUDING_VIEWS)) {
256 features.remove(CollectionFeature.SERIALIZABLE);
285 features.remove(CollectionFeature.SERIALIZABLE);
286 features.remove(CollectionFeatur
[all...]
H A DUnmodifiableCollectionTests.java65 iterator.remove();
146 collection.remove(sampleElement);
147 fail("remove succeeded on unmodifiable collection");
224 multiset.remove(sampleElement, 2);
225 fail("remove(Object, int) succeeded on unmodifiable collection");
355 // Test #remove()
357 multimap.remove(sampleKey, sampleValue);
358 fail("remove succeeded on unmodifiable multimap");
381 multimap.asMap().remove(sampleKey);
382 fail("asMap().remove() succeede
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapsTransformValuesUnmodifiableIteratorTest.java33 * have iterators that don't support {@code remove()}.
197 assertEquals("1", map.remove("a"));
198 assertNull(map.remove("b"));
237 underlying.remove("c");
257 map.remove("a");
261 keys.remove("b");
266 keyIterator.remove();
270 values.remove("4");
275 valueIterator.remove();
280 entries.remove(firstEntr
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dsimplepatternformattertest.cpp67 appendTo.remove();
92 appendTo.remove();
100 appendTo.remove();
138 appendTo.remove();
143 appendTo.remove();
156 appendTo.remove();
170 appendTo.remove();
183 appendTo.remove();
190 appendTo.remove();
197 appendTo.remove();
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterators.java130 @Override public void remove() {
139 * {@link Iterator#remove()}.
203 * @param removeFrom the iterator to (potentially) remove elements from
204 * @param elementsToRemove the elements to remove
217 * @param removeFrom the iterator to (potentially) remove elements from
229 removeFrom.remove();
241 * @param removeFrom the iterator to (potentially) remove elements from
359 * <p>The returned iterator supports {@code remove()} if the provided iterator
360 * does. After {@code remove()} is called, subsequent cycles omit the removed
367 * you will eventually remove al
1124 public void remove() { method in class:Iterators.PeekingImpl
[all...]
H A DAbstractMapBasedMultimap.java254 Collection<V> collection = map.remove(key);
388 * If collection is empty, remove it from {@code AbstractMapBasedMultimap.this.map}.
395 map.remove(key);
487 public void remove() { method in class:AbstractMapBasedMultimap.WrappedCollection.WrappedIterator
488 delegateIterator.remove();
554 @Override public boolean remove(Object o) { method in class:AbstractMapBasedMultimap.WrappedCollection
556 boolean changed = delegate.remove(o);
731 public V remove(int index) { method in class:AbstractMapBasedMultimap.WrappedList
733 V value = getListDelegate().remove(index);
862 public void remove() {
874 @Override public boolean remove(Object key) { method in class:AbstractMapBasedMultimap.KeySet
992 public void remove() { method in class:AbstractMapBasedMultimap.Itr
1109 @Override public Collection<V> remove(Object key) { method in class:AbstractMapBasedMultimap.AsMap
1164 @Override public boolean remove(Object o) { method in class:AbstractMapBasedMultimap.AsMap.AsMapEntries
1193 public void remove() { method in class:AbstractMapBasedMultimap.AsMap.AsMapIterator
[all...]
/external/llvm/lib/Analysis/
H A DAliasSetTracker.cpp95 assert(RefCount == 0 && "Cannot remove non-dead alias set from tracker!");
413 /// remove - Remove the specified (potentially non-empty) alias set from the
415 void AliasSetTracker::remove(AliasSet &AS) { function in class:AliasSetTracker
434 // Finally, remove the entry.
445 AliasSetTracker::remove(Value *Ptr, uint64_t Size, const AAMDNodes &AAInfo) { function in class:AliasSetTracker
448 remove(*AS);
452 bool AliasSetTracker::remove(LoadInst *LI) { function in class:AliasSetTracker
460 remove(*AS);
464 bool AliasSetTracker::remove(StoreInst *SI) { function in class:AliasSetTracker
472 remove(*A
476 bool AliasSetTracker::remove(VAArgInst *VAAI) { function in class:AliasSetTracker
497 bool AliasSetTracker::remove(Instruction *I) { function in class:AliasSetTracker
[all...]
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DSmallSortedMapTest.java150 assertNull(map.remove(i + 1));
161 assertNull(map.remove(i + 1));
169 assertEquals(new Integer(2), map.remove(1));
175 assertEquals(new Integer(5), map.remove(4));
181 assertEquals(new Integer(4), map.remove(3));
187 assertNull(map.remove(3));
192 assertEquals(new Integer(1), map.remove(0));
271 assertTrue(entrySet.remove(entry));
272 assertFalse(entrySet.remove(entry));
316 it.remove();
[all...]
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/clustering/
H A DKMeansPlusPlusClusterer.java168 final T firstPoint = pointSet.remove(random.nextInt(pointSet.size()));
189 final T p = pointSet.remove(i);
237 return selectedPoints.remove(random.nextInt(selectedPoints.size()));
271 return selectedPoints.remove(random.nextInt(selectedPoints.size()));
307 return selectedCluster.getPoints().remove(selectedPoint);
/external/conscrypt/src/main/java/org/conscrypt/
H A DAbstractSessionContext.java60 boolean remove = maximumSize > 0 && size() > maximumSize;
61 if (remove) {
62 remove(eldest.getKey());
144 i.remove();
166 i.remove();
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicLongMap.java234 public long remove(K key) { method in class:AtomicLongMap
243 // only remove after setting to zero, to avoid concurrent updates
244 map.remove(key, atomic);
245 // succeed even if the remove fails, since the value was already adjusted
261 map.remove(key, atomic);
339 * The problem with these is that remove(K, long) has to be done in two phases by definition ---
350 * remove(K, long). Without any two-phase operations it becomes feasible for all remaining
410 boolean remove(K key, long value) { method in class:AtomicLongMap
422 // only remove after setting to zero, to avoid concurrent updates
423 map.remove(ke
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DLightList.java125 public void remove(int index){ method in class:LightList
144 * @param l the light to remove
146 public void remove(Light l){ method in class:LightList
149 remove(i);
284 public void remove() {
285 LightList.this.remove(--index);

Completed in 7239 milliseconds

<<11121314151617181920>>