Searched defs:remove (Results 251 - 275 of 593) sorted by relevance

<<11121314151617181920>>

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
H A DCounter.java236 public Counter<T> remove(T key) { method in class:Counter
237 map.remove(key);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DRelation.java190 return data.remove(key);
196 public boolean remove(K key, V value) { method in class:Relation
202 boolean result = set.remove(value);
204 data.remove(key);
330 result |= remove(key, value);
339 final Set<V> removals = data.remove(key);
H A DTextTrieMap.java164 * @see java.util.Iterator#remove()
167 public void remove() { method in class:TextTrieMap.CharIterator
168 throw new UnsupportedOperationException("remove() not supproted");
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCounter.java235 public Counter<T> remove(T key) { method in class:Counter
236 map.remove(key);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
H A DTestCLDRVsICU.java316 static String remove(String in, UnicodeSet toRemove) { method in class:TestCLDRVsICU
341 line = remove(line, controlsAndSpace); HACK for SAX
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
H A DResourceModule.java139 public void remove() { method in class:ResourceModule.IteratorAdapter
/external/javassist/src/main/javassist/
H A DCtMember.java103 void remove(CtMember mem) { method in class:CtMember.Cache
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DDelegatedData.java165 public void remove() { method in class:DelegatedData.DelegatedIterator
166 iterator.remove();
172 * don't want to support the remove() operation.
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhoneNumberMatcher.java557 // We remove the extension part from the formatted string before splitting it into different
724 public void remove() { method in class:PhoneNumberMatcher
/external/llvm/lib/CodeGen/SelectionDAG/
H A DResourcePriorityQueue.cpp587 // Since it is available, it must be in the priority queue. First remove it.
588 remove(OnlyAvailablePred);
632 void ResourcePriorityQueue::remove(SUnit *SU) { function in class:ResourcePriorityQueue
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_bb.cpp235 BasicBlock::remove(Instruction *insn) function in class:nv50_ir::BasicBlock
/external/mesa3d/src/glsl/
H A Dlist.h123 void remove() function in struct:exec_node
257 void remove() function in class:exec_list_iterator
259 node->remove();
394 n->remove();
/external/mockito/src/main/java/org/mockito/internal/util/concurrent/
H A DWeakConcurrentMap.java91 public V remove(K key) { method in class:WeakConcurrentMap
93 return target.remove(new LatentKey<K>(key));
127 target.remove(reference);
144 target.remove(remove());
271 public V remove(K key) { method in class:WeakConcurrentMap.WithInlinedExpunction
273 return super.remove(key);
332 public void remove() { method in class:WeakConcurrentMap.EntryIterator
/external/mockito/src/test/java/org/mockito/internal/util/reflection/
H A DGenericMetadataSupportTest.java39 Set<Number> remove(Object key); // override with fixed ParameterizedType method in interface:GenericMetadataSupportTest.GenericsNest
127 GenericMetadataSupport genericMetadata = inferFrom(GenericsNest.class).resolveGenericReturnType(firstNamedMethod("remove", GenericsNest.class));
/external/nist-sip/java/gov/nist/core/
H A DNameValueList.java207 this.hmap.remove(lcName);
336 * @see java.util.Map#remove(java.lang.Object)
338 public NameValue remove(Object key) { method in class:NameValueList
339 return this.hmap.remove(key.toString().toLowerCase());
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DLazyStringArrayList.java204 public String remove(int index) { method in class:LazyStringArrayList
206 Object o = list.remove(index);
359 public byte[] remove(int index) { method in class:LazyStringArrayList.ByteArrayListView
360 Object o = list.remove(index);
403 public ByteString remove(int index) { method in class:LazyStringArrayList.ByteStringListView
404 Object o = list.remove(index);
H A DMapFieldLite.java260 public V remove(Object key) { method in class:MapFieldLite.MutatabilityAwareMap
262 return delegate.remove(key);
357 public boolean remove(Object o) { method in class:MapFieldLite.MutatabilityAwareCollection
359 return delegate.remove(o);
456 public boolean remove(Object o) { method in class:MapFieldLite.MutatabilityAwareSet
458 return delegate.remove(o);
529 public void remove() { method in class:MapFieldLite.MutatabilityAwareIterator
531 delegate.remove();
H A DRepeatedFieldBuilder.java443 * @param index the index at which to remove the message
445 public void remove(int index) { method in class:RepeatedFieldBuilder
447 messages.remove(index);
450 builders.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/protobuf/python/google/protobuf/internal/
H A Dcontainers.py287 def remove(self, elem): member in class:RepeatedScalarFieldContainer
288 """Removes an item from the list. Similar to list.remove()."""
289 self._values.remove(elem)
399 def remove(self, elem): member in class:RepeatedCompositeFieldContainer
400 """Removes an item from the list. Similar to list.remove()."""
401 self._values.remove(elem)
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/content/
H A DTestSharedPreferences.java89 listeners.remove(listener);
105 editsThatNeedRemove.remove(key);
112 editsThatNeedRemove.remove(key);
119 editsThatNeedRemove.remove(key);
126 editsThatNeedRemove.remove(key);
133 editsThatNeedRemove.remove(key);
138 public Editor remove(String key) { method in class:TestSharedPreferences.TestSharedPreferencesEditor
159 previousContent.remove(key);
/external/skia/include/private/
H A DSkTDArray.h212 void remove(int index, int count = 1) { function in class:SkTDArray
H A DSkTHash.h79 void remove(const K& key) { function in class:SkTHashTable
254 void remove(const K& key) { function in class:SkTHashMap
256 fTable.remove(key);
308 void remove(const T& item) { function in class:SkTHashSet
310 fTable.remove(item);
/external/skia/infra/bots/assets/
H A Dasset_utils.py324 def remove(self, remove_in_store=False): member in class:Asset
/external/skia/src/core/
H A DSkMetaData.cpp118 (void)this->remove(name, type);
246 bool SkMetaData::remove(const char name[], Type type) { function in class:SkMetaData
275 return this->remove(name, kS32_Type);
280 return this->remove(name, kScalar_Type);
285 return this->remove(name, kString_Type);
290 return this->remove(name, kPtr_Type);
295 return this->remove(name, kBool_Type);
299 return this->remove(name, kData_Type);

Completed in 670 milliseconds

<<11121314151617181920>>