Searched refs:Insert (Results 1 - 25 of 263) sorted by relevance

1234567891011

/haiku/src/tests/kits/support/bstring/
H A DStringInsertTest.cpp22 // &Insert(const char *, int32 pos);
25 str1->Insert("INSERTED", 3);
34 str1->Insert("INSERTED", 10);
41 str1->Insert("INSERTED", -1);
49 str1->Insert("INSERTED", -142364253);
54 // &Insert(const char *, int32 length, int32 pos);
57 str1->Insert("INSERTED", 2, 2);
66 str1->Insert("INSERTED", 2, 30);
73 str1->Insert("INSERTED", 10, 2);
77 // &Insert(cons
[all...]
/haiku/src/bin/bfs_tools/lib/
H A DBPlusTree.h124 status_t Insert(uint8 *key, uint16 keyLength, off_t value);
126 status_t Insert(const char *key, off_t value);
127 status_t Insert(int32 key, off_t value);
128 status_t Insert(uint32 key, off_t value);
129 status_t Insert(int64 key, off_t value);
130 status_t Insert(uint64 key, off_t value);
131 status_t Insert(float key, off_t value);
132 status_t Insert(double key, off_t value);
200 inline status_t BPlusTree::Insert(const char *key,off_t value) function in class:BPlusTree
204 return Insert((uint
207 inline status_t BPlusTree::Insert(int32 key, off_t value) function in class:BPlusTree
214 inline status_t BPlusTree::Insert(uint32 key, off_t value) function in class:BPlusTree
221 inline status_t BPlusTree::Insert(int64 key, off_t value) function in class:BPlusTree
228 inline status_t BPlusTree::Insert(uint64 key, off_t value) function in class:BPlusTree
235 inline status_t BPlusTree::Insert(float key, off_t value) function in class:BPlusTree
242 inline status_t BPlusTree::Insert(double key, off_t value) function in class:BPlusTree
[all...]
/haiku/src/add-ons/kernel/file_systems/ext2/
H A DRevokeManager.h21 virtual status_t Insert(uint32 block, uint32 commitID) = 0;
H A DRevokeManager.cpp45 status_t status = Insert(revokeBlock->RevokeBlock(i), commitID);
H A DHashRevokeManager.cpp63 HashRevokeManager::Insert(uint32 block, uint32 commitID) function in class:HashRevokeManager
68 TRACE("HashRevokeManager::Insert(): Already has an element\n");
70 TRACE("HashRevokeManager::Insert(): Deleting previous element\n");
154 status_t retValue = fHash->Insert(element);
/haiku/src/add-ons/media/media-add-ons/dvb/
H A DPacketQueue.h38 status_t Insert(Packet *packet);
/haiku/src/tests/add-ons/kernel/file_systems/bfs/array/
H A DsmallArray.cpp25 array->Insert(rand());
/haiku/src/tests/kits/interface/btextview/
H A DTextViewTest.cpp22 v->Insert(8, "(inserted) ", 10);
/haiku/src/tests/kits/interface/btextcontrol/
H A DTextControlTest.cpp22 v->TextView()->Insert(8, "(inserted) ", 10);
/haiku/src/add-ons/kernel/file_systems/bfs/
H A DBPlusTree.h281 status_t Insert(Transaction& transaction,
287 status_t Insert(Transaction& transaction, const char* key,
289 status_t Insert(Transaction& transaction, int32 key,
291 status_t Insert(Transaction& transaction, uint32 key,
293 status_t Insert(Transaction& transaction, int64 key,
295 status_t Insert(Transaction& transaction, uint64 key,
297 status_t Insert(Transaction& transaction, float key,
299 status_t Insert(Transaction& transaction, double key,
457 BPlusTree::Insert(Transaction& transaction, const char* key, off_t value) function in class:BFS::BPlusTree
461 return Insert(transactio
466 BPlusTree::Insert(Transaction& transaction, int32 key, off_t value) function in class:BFS::BPlusTree
475 BPlusTree::Insert(Transaction& transaction, uint32 key, off_t value) function in class:BFS::BPlusTree
484 BPlusTree::Insert(Transaction& transaction, int64 key, off_t value) function in class:BFS::BPlusTree
493 BPlusTree::Insert(Transaction& transaction, uint64 key, off_t value) function in class:BFS::BPlusTree
502 BPlusTree::Insert(Transaction& transaction, float key, off_t value) function in class:BFS::BPlusTree
511 BPlusTree::Insert(Transaction& transaction, double key, off_t value) function in class:BFS::BPlusTree
[all...]
/haiku/src/tests/system/kernel/util/
H A DBOpenHashTableTest.cpp76 "BOpenHashTable::Insert test",
79 "BOpenHashTable::Insert unchecked test",
82 "BOpenHashTable::Insert unchecked uninitialized test",
135 CPPUNIT_ASSERT_EQUAL(table.Insert(&entry), B_OK);
172 CPPUNIT_ASSERT_EQUAL(table.Insert(entry), B_OK);
204 CPPUNIT_ASSERT_EQUAL(table.Insert(entry), B_OK);
228 CPPUNIT_ASSERT_EQUAL(table.Insert(&entry), B_OK);
239 CPPUNIT_ASSERT_EQUAL(table.Insert(&entry), B_OK);
254 CPPUNIT_ASSERT_EQUAL(table.Insert(&entry), B_OK);
272 table.Insert(
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/client/
H A DQueryIterator.cpp104 fSubIterators.Insert(subIterator);
130 subIterators.Insert(iterator);
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp1410 fCreditsView->Insert(name);
1411 fCreditsView->Insert("\n");
1413 fCreditsView->Insert(text);
1414 fCreditsView->Insert("\n");
1418 fCreditsView->Insert(B_TRANSLATE("Licenses: "));
1420 fCreditsView->Insert(B_TRANSLATE("License: "));
1426 fCreditsView->Insert(", ");
1437 fCreditsView->Insert(licenseName);
1440 fCreditsView->Insert("\n");
1444 fCreditsView->Insert(B_TRANSLAT
[all...]
/haiku/src/apps/haikudepot/textview/
H A DTextDocument.h34 status_t Insert(int32 textOffset, const BString& text);
35 status_t Insert(int32 textOffset, const BString& text,
37 status_t Insert(int32 textOffset, const BString& text,
H A DTextSpan.cpp106 return Insert(fCharCount, text);
111 TextSpan::Insert(int32 offset, const BString& text) function in class:TextSpan
/haiku/src/apps/debuganalyzer/gui/
H A DSubWindowManager.cpp43 fSubWindows.Insert(window);
/haiku/src/kits/package/hpkg/
H A DStrings.cpp68 Insert(string);
/haiku/headers/private/fs_shell/
H A DDoublyLinkedList.h332 inline void Insert(Element* element, bool back = true);
366 inline void Insert(Element* before, Element* element);
379 // Insert
382 DOUBLY_LINKED_LIST_CLASS_NAME::Insert(Element *element, bool back) function in class:FSShell::DOUBLY_LINKED_LIST_CLASS_NAME
415 Insert(element);
442 Insert(element, false);
462 DOUBLY_LINKED_LIST_CLASS_NAME::Insert(Element* before, Element* element) function in class:FSShell::DOUBLY_LINKED_LIST_CLASS_NAME
473 Insert(element, back);
506 Insert(b, a);
509 Insert(
[all...]
/haiku/headers/private/kernel/util/
H A DDoublyLinkedList.h337 inline void Insert(Element* element, bool back = true);
379 inline void Insert(Element* before, Element* element);
392 // Insert
395 DOUBLY_LINKED_LIST_CLASS_NAME::Insert(Element* element, bool back) function in class:DOUBLY_LINKED_LIST_CLASS_NAME
434 Insert(element);
464 Insert(element, false);
489 DOUBLY_LINKED_LIST_CLASS_NAME::Insert(Element* before, Element* element) function in class:DOUBLY_LINKED_LIST_CLASS_NAME
500 Insert(element, back);
542 Insert(b, a);
545 Insert(
[all...]
H A DVector.h46 status_t Add(const Value &value, int32 index) { return Insert(value, index); }
48 status_t Insert(const Value &value, int32 index);
49 status_t Insert(const Value &value, const Iterator &iterator);
237 return Insert(value, 0);
251 return Insert(value, fItemCount);
296 // Insert
308 _VECTOR_CLASS_NAME::Insert(const Value &value, int32 index) function in class:_VECTOR_CLASS_NAME
319 // Insert
331 _VECTOR_CLASS_NAME::Insert(const Value &value, const Iterator &iterator) function in class:_VECTOR_CLASS_NAME
335 return Insert(valu
[all...]
/haiku/src/add-ons/input_server/methods/pen/compat/
H A DStringIO.cpp39 fString->Insert(' ', (int32)(pos - fString->Length()), fString->Length());
41 fString->Insert((const char *)buffer, size, (int32)pos);
/haiku/src/servers/package/
H A DPackageFileManager.cpp64 fFilesByEntryRef.Insert(file);
96 fFilesByEntryRef.Insert(file);
H A DVolumeState.cpp48 fPackagesByFileName.Insert(package);
49 fPackagesByNodeRef.Insert(package);
/haiku/src/kits/interface/textview_support/
H A DUndoBuffer.cpp77 fTextView->Insert(fTextData, fTextLength, fRunArray);
154 fTextView->Insert(fTextData, fTextLength, fRunArray);
164 fTextView->Insert(fPasteText, fPasteTextLength, fPasteRunArray);
230 fTextView->Insert(fTextData, fTextLength, fRunArray);
244 fTextView->Insert(fDropText, fDropTextLength, fDropRunArray);
279 fTextView->Insert(fTextData, fTextLength);
290 fTextView->Insert(fTypedText, fTypedEnd - fTypedStart);
/haiku/src/add-ons/kernel/file_systems/packagefs/util/
H A DStringPool.cpp49 sStrings->Insert(StringData::Empty());
107 sStrings->Insert(newString);

Completed in 123 milliseconds

1234567891011