Searched refs:Remove (Results 51 - 75 of 509) sorted by relevance

1234567891011>>

/haiku-fatelf/headers/private/fs_shell/
H A DDoublyLinkedList.h149 Element *Remove() function in class:FSShell::DoublyLinkedList::Iterator
153 fList->Remove(fCurrent);
250 Element *Remove() function in class:FSShell::DoublyLinkedList::ReverseIterator
254 fList->Remove(fCurrent);
333 inline void Remove(Element *element);
437 // Remove
440 DOUBLY_LINKED_LIST_CLASS_NAME::Remove(Element *element) function in class:FSShell::DOUBLY_LINKED_LIST_CLASS_NAME
466 Remove(a);
469 Remove(b);
472 Remove(
[all...]
/haiku-fatelf/headers/private/kernel/util/
H A DAVLTree.h60 Value* Remove(const Key& key);
61 bool Remove(Value* key);
101 inline void Remove() function in class:AVLTree::Iterator
103 if (AVLTreeNode* node = ConstIterator::fTreeIterator.Remove()) {
328 AVLTree<Definition>::Remove(const Key& key) function in class:AVLTree
330 AVLTreeNode* node = fTree.Remove(&key);
337 AVLTree<Definition>::Remove(Value* value) function in class:AVLTree
339 return fTree.Remove(_GetAVLTreeNode(value));
H A DDoublyLinkedQueue.h61 Element *Remove() function in class:DoublyLinkedQueue::Iterator
65 fQueue->Remove(fCurrent);
144 inline void Remove(Element *element);
224 // Remove
227 DOUBLY_LINKED_QUEUE_CLASS_NAME::Remove(Element *element) function in class:DOUBLY_LINKED_QUEUE_CLASS_NAME
319 Remove(element);
H A DSinglyLinkedList.h145 inline bool Remove(Element* element);
146 inline void Remove(Element* previous, Element* element);
196 SINGLY_LINKED_LIST_CLASS_NAME::Remove(Element* element) function in class:SINGLY_LINKED_LIST_CLASS_NAME
223 SINGLY_LINKED_LIST_CLASS_NAME::Remove(Element* previous, Element* element) function in class:SINGLY_LINKED_LIST_CLASS_NAME
282 Remove(element);
H A DSplayTree.h97 Node* Remove(const Key& key) function in class:SplayTree
123 Remove from the tree.
126 bool Remove(Node* node) function in class:SplayTree
277 in the Remove() method.
405 Node* Remove() function in class:IteratableSplayTree::Iterator
409 fTree->Remove(fCurrent);
514 Node* Remove(const Key& key) function in class:IteratableSplayTree
516 Node* node = fTree.Remove(key);
531 bool Remove(Node* node) function in class:IteratableSplayTree
533 if (!fTree.Remove(nod
[all...]
/haiku-fatelf/headers/private/media/
H A DTList.h65 bool Remove(int32 index) function in class:List
118 return Remove(item_iter);
/haiku-fatelf/src/apps/debugger/debug_info/
H A DFunction.cpp71 fListeners.Remove(listener);
90 fInstances.Remove(instance);
/haiku-fatelf/src/servers/print/
H A DPrinter.h61 static void Remove(Printer* printer);
64 status_t Remove();
/haiku-fatelf/headers/private/userlandfs/shared/
H A DHashSet.h84 bool Remove() function in class:HashSet::Iterator
131 bool Remove(const Key& key);
171 bool Remove(const Key& key) function in class:SynchronizedHashSet
176 return fSet.Remove(key);
270 // Remove
273 HashSet<Key>::Remove(const Key& key) function in class:HashSet
279 fTable.Remove(element);
H A DHashMap.h99 Entry Remove() function in class:HashMap::Iterator
146 Value Remove(const Key& key);
189 Value Remove(const Key& key) function in class:SynchronizedHashMap
194 return fMap.Remove(key);
360 // Remove
363 HashMap<Key, Value>::Remove(const Key& key) function in class:HashMap
369 fTable.Remove(element);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/ramfs/
H A DTwoKeyAVLTree.h168 inline status_t Remove(const PrimaryKey &primaryKey,
170 inline void Remove(Iterator &iterator);
289 // Remove
292 TWO_KEY_AVL_TREE_CLASS_NAME::Remove(const PrimaryKey &primaryKey, function in class:TWO_KEY_AVL_TREE_CLASS_NAME
295 return BaseClass::Remove(Key(primaryKey, secondaryKey));
298 // Remove
301 TWO_KEY_AVL_TREE_CLASS_NAME::Remove(Iterator &iterator) function in class:TWO_KEY_AVL_TREE_CLASS_NAME
303 BaseClass::Remove(iterator);
/haiku-fatelf/src/kits/network/libnetapi/
H A DNetworkCookieJar.cpp70 delete it.Remove();
149 delete it.Remove();
166 delete it.Remove();
277 flattenedCookies.Remove(0, 1);
289 tempCookieLine.Remove(0, 1);
451 BNetworkCookieJar::Iterator::Remove() function in class:BNetworkCookieJar::Iterator
460 fIterator->fCookieMapIterator.Remove();
580 BNetworkCookieJar::UrlIterator::Remove() function in class:BNetworkCookieJar::UrlIterator
593 delete fCookieJar->fCookieHashMap->fHashMap.Remove(lastKey);
627 domain.Remove(
[all...]
/haiku-fatelf/src/kits/support/
H A DStringList.cpp104 BStringList::Remove(const BString& string, bool ignoreCase) function in class:BStringList
115 Remove(i);
122 Remove(i);
133 BStringList::Remove(const BStringList& list, bool ignoreCase) function in class:BStringList
138 removedAnything |= Remove(list.StringAt(i), ignoreCase);
145 BStringList::Remove(int32 index) function in class:BStringList
158 BStringList::Remove(int32 index, int32 count) function in class:BStringList
/haiku-fatelf/src/apps/deskcalc/
H A DExpressionTextView.cpp217 value.Remove(offset, 1);
222 value.Remove(firstDigit, 1);
239 value.Remove(offset, 1);
259 value.Remove(offset--, 1);
265 value.Remove(offset, 1);
318 value.Remove(offset--, 1);
322 value.Remove(offset, 1);
/haiku-fatelf/src/servers/media/
H A DBufferManager.cpp132 fBufferInfoMap.Remove(bufferID);
158 iterator.Remove();
222 fCloneInfoMap.Remove(area);
246 fSourceInfoMap.Remove(clone);
247 fCloneInfoMap.Remove(source);
/haiku-fatelf/src/system/kernel/vm/
H A DVMPageQueue.h36 inline void Remove(vm_page* page);
127 VMPageQueue::Remove(vm_page* page) function in class:VMPageQueue
131 panic("%p->VMPageQueue::Remove(page: %p): page thinks it "
136 fPages.Remove(page);
176 fPages.Remove(page);
224 return Remove(page);
/haiku-fatelf/src/tests/kits/support/bstring/
H A DStringRemoveTest.cpp68 //Remove(int32 from, int32 length)
71 string1->Remove(2, 2);
78 string1->Remove(2, 1);
85 string1->Remove(20, 2);
92 string1->Remove(4, 30);
98 string1->Remove(-3, 5);
255 return(new StringRemoveTestCaller("BString::Remove Test", &StringRemoveTest::PerformTest));
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/client/
H A DVirtualDir.cpp239 VirtualDirEntry* entry = fEntries.Remove(name);
251 fEntryList.Remove(entry);
313 fIterators.Remove(iterator);
/haiku-fatelf/src/add-ons/kernel/file_systems/netfs/headers/shared/
H A DBlockingQueue.h53 status_t Remove(Element* element);
160 // Remove
163 BlockingQueue<Element>::Remove(Element* element) function in class:BlockingQueue
172 int32 count = fElements.Remove(element);
178 ERROR("ERROR: BlockingQueue::Remove(): Removed %ld elements!\n",
/haiku-fatelf/src/apps/debugger/debug_managers/
H A DTeamMemoryBlockManager.cpp182 fActiveBlocks->Remove(entry);
195 fActiveBlocks->Remove(entry);
204 fDeadBlocks->Remove(block);
/haiku-fatelf/src/kits/shared/
H A DRWLockManager.cpp206 lockable->fWaiters.Remove(&waiter);
228 lockable->fWaiters.Remove(waiter);
250 lockable->fWaiters.Remove(waiter);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/client/
H A DVirtualDir.cpp236 VirtualDirEntry* entry = fEntries.Remove(name);
248 fEntryList.Remove(entry);
310 fIterators.Remove(iterator);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/netfs/headers/shared/
H A DBlockingQueue.h52 status_t Remove(Element* element);
159 // Remove
162 BlockingQueue<Element>::Remove(Element* element) function in class:BlockingQueue
171 int32 count = fElements.Remove(element);
177 ERROR(("ERROR: BlockingQueue::Remove(): Removed %ld elements!\n",
/haiku-fatelf/headers/os/net/
H A DNetworkCookieJar.h84 BNetworkCookie* Remove();
113 BNetworkCookie* Remove();
/haiku-fatelf/headers/private/shared/
H A DOpenHashTable.h69 void Remove(int32 index);
104 void Remove(Element *element, bool dontRehash = false);
147 void Remove(int32 index);
272 OpenHashTable<Element, ElementVec>::Remove(Element *element, bool dontRehash) function in class:BPrivate::OpenHashTable
282 fElementVector->Remove(next);
297 fElementVector->Remove(next);
314 fElementVector->Remove(index);
498 OpenHashElementArray<Element>::Remove(int32 index) function in class:BPrivate::OpenHashElementArray

Completed in 278 milliseconds

1234567891011>>