Searched defs:remove (Results 276 - 300 of 552) sorted by relevance

<<11121314151617181920>>

/external/lldb/source/Core/
H A DListener.cpp143 // Called when a Broadcaster is in its destuctor. We need to remove all
176 // Just need to remove this broadcast manager from the list of managers:
271 bool remove)
297 log->Printf ("%p '%s' Listener::FindNextEventInternal(broadcaster=%p, broadcaster_names=%p[%u], event_type_mask=0x%8.8x, remove=%i) event %p",
304 remove,
307 if (remove)
321 if (remove)
426 const bool remove = false; local
427 if (FindNextEventInternal (broadcaster, broadcaster_names, num_broadcaster_names, event_type_mask, event_sp, remove))
264 FindNextEventInternal( Broadcaster *broadcaster, const ConstString *broadcaster_names, uint32_t num_broadcaster_names, uint32_t event_type_mask, EventSP &event_sp, bool remove) argument
/external/llvm/lib/Analysis/
H A DAliasSetTracker.cpp90 assert(RefCount == 0 && "Cannot remove non-dead alias set from tracker!");
392 /// remove - Remove the specified (potentially non-empty) alias set from the
394 void AliasSetTracker::remove(AliasSet &AS) { function in class:AliasSetTracker
411 // Finally, remove the entry.
422 AliasSetTracker::remove(Value *Ptr, uint64_t Size, const MDNode *TBAAInfo) { function in class:AliasSetTracker
425 remove(*AS);
429 bool AliasSetTracker::remove(LoadInst *LI) { function in class:AliasSetTracker
434 remove(*AS);
438 bool AliasSetTracker::remove(StoreInst *SI) { function in class:AliasSetTracker
443 remove(*A
447 bool AliasSetTracker::remove(VAArgInst *VAAI) { function in class:AliasSetTracker
466 bool AliasSetTracker::remove(Instruction *I) { function in class:AliasSetTracker
[all...]
/external/llvm/lib/CodeGen/SelectionDAG/
H A DResourcePriorityQueue.cpp589 // Since it is available, it must be in the priority queue. First remove it.
590 remove(OnlyAvailablePred);
634 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/cglib-and-asm/src/org/mockito/asm/tree/
H A DInsnList.java47 * {@link #insert(AbstractInsnNode, InsnList)}, {@link #remove remove} and
490 public void remove(final AbstractInsnNode insn) { method in class:InsnList
593 public void remove() { method in class:InsnList.InsnListIterator
594 InsnList.this.remove(prev);
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DBeanMap.java234 public Object remove(Object key) { method in class:BeanMap
/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/qemu/android/base/containers/
H A DPodVector.h240 void remove(size_t index) { function in class:android::base::PodVector
250 void pop() { remove(0U); }
/external/qemu/android/
H A Dcmdline-option.c122 int remove = 0; local
127 remove = 1;
138 if (remove)
257 int nn, remove = 0; local
261 remove = 1;
282 if (remove)
/external/qemu/distrib/sdl-1.2.15/src/main/win32/
H A DSDL_win32_main.c21 # define remove(x) DeleteFile(x) macro
182 remove(stdoutPath);
192 remove(stderrPath);
/external/robolectric/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/core/
H A DSkTDArray.h219 void remove(int index, int count = 1) { function in class:SkTDArray
H A DSkTInternalLList.h48 void remove(T* entry) { function in class:SkTInternalLList
/external/skia/src/animator/
H A DSkTDArray_Experimental.h56 void remove(U16CPU index, U16CPU count = 1) function in class:SkDS32Array
/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);
H A DSkTDynamicHash.h88 void remove(const Key& key) { function in class:SkTDynamicHash
/external/smack/src/org/jivesoftware/smack/packet/
H A DRosterPacket.java212 groupNames.remove(groupName);
309 remove enum constant in enum:RosterPacket.ItemType
/external/smack/src/org/jivesoftware/smack/util/
H A DCache.java118 oldValue = remove(key, true);
132 // If cache is too full, remove least used cache entries until it is not too full.
151 cacheObject.lastAccessedListNode.remove();
162 public synchronized V remove(Object key) { method in class:Cache
163 return remove(key, false);
167 * Remove operation with a flag so we can tell coherence if the remove was
170 public synchronized V remove(Object key, boolean internal) { method in class:Cache
172 CacheObject<V> cacheObject = map.remove(key);
173 // If the object is not in cache, stop trying to remove it.
178 cacheObject.lastAccessedListNode.remove();
663 public void remove() { method in class:Cache.LinkedListNode
[all...]
/external/smack/src/org/xbill/DNS/
H A DZone.java90 remove() { method in class:Zone.ZoneIterator
316 list.remove(i);
318 data.remove(name);
326 data.remove(name);
/external/stlport/stlport/stl/
H A D_algo.h50 // remove() conflict
235 // remove, remove_if, remove_copy, remove_copy_if
265 remove(_ForwardIter __first, _ForwardIter __last, const _Tp& __val) { function
/external/stlport/stlport/stl/debug/
H A D_list.h339 void remove(const _Tp& __x) { function in class:list
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPIteratorImpl.java160 * @see java.util.Iterator#remove()
162 public void remove() method in class:XMPIteratorImpl
164 throw new UnsupportedOperationException("The XMPIterator does not support remove().");
385 * @see Iterator#remove()
387 public void remove() method in class:XMPIteratorImpl.NodeIterator
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
H A DTempFile.js215 remove: function()
218 this._fileEntry.remove(function() {});
350 remove: function()
353 this._callsPendingOpen.push(this.remove.bind(this));
357 this._tempFile.remove();
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DBufferedTreeNodeStream.java76 public void remove() { method in class:BufferedTreeNodeStream.StreamIterator
77 throw new RuntimeException("cannot remove nodes from stream");

Completed in 379 milliseconds

<<11121314151617181920>>