Searched refs:Find (Results 1 - 25 of 146) sorted by last modified time

123456

/haiku-fatelf/src/bin/bfs_tools/lib/
H A DInode.cpp1186 if (name && (status = fTree->Find((uint8 *)name, (uint16)strlen(name),
1216 if ((status = fTree->Find((uint8 *)name, (uint16)strlen(name),
/haiku-fatelf/src/kits/tracker/
H A DSettingsHandler.h159 SettingsArgvDispatcher* Find(const char*);
H A DTrackerScripting.cpp54 Find a window for a path
H A DFindPanel.cpp179 BWindow(kInitialRect, B_TRANSLATE("Find"), B_TITLED_WINDOW,
495 FindWindow::Find() function in class:BPrivate::FindWindow
604 Find();
H A DAttributeStream.h235 int32 Find(const char* name, uint32 type) const;
260 int32 Find(const char* name, uint32 type) const;
358 int32 Find(const char* name, uint32 type) const;
410 AttributeStreamConstValue<Type>::Find(const char* name, uint32 type) const function in class:BPrivate::AttributeStreamConstValue
/haiku-fatelf/src/bin/bfs_tools/
H A Dchkindex.cpp277 if (tree.Find((uint8 *)key,keyLength,&value) < B_OK)
/haiku-fatelf/src/servers/print/
H A DConfigWindow.cpp405 fCurrentPrinter = Printer::Find(fPrinterName);
H A DPrinter.cpp55 // Find [static]
67 Printer::Find(const BString& name) function in class:Printer
79 Printer::Find(node_ref* node) function in class:Printer
H A DTransport.cpp22 // Find [static]
34 Transport::Find(const BString& name) function in class:Transport
96 if (Transport::Find(path.Leaf()) != NULL)
129 // Find transport_features symbol, to determine if we need to keep
/haiku-fatelf/src/system/kernel/vm/
H A Dvm.cpp1441 // during boot time. Find the appropriate vm_page objects and stick
5731 return VMAreaHash::Find(name);
/haiku-fatelf/src/apps/terminal/
H A DTermView.cpp3016 // Find a string, and select it if found
3018 TermView::Find(const BString &str, bool forwardSearch, bool matchCase, function in class:TermView
3039 if (!fTextBuffer->Find(str.String(), start, forwardSearch, matchCase,
3225 // TODO: Find out if what we did it's ok, currently we don't consider
H A DTermWindow.cpp491 .AddItem(B_TRANSLATE("Find" B_UTF8_ELLIPSIS), MENU_FIND_STRING,'F')
492 .AddItem(B_TRANSLATE("Find previous"), MENU_FIND_PREVIOUS, 'G',
496 .AddItem(B_TRANSLATE("Find next"), MENU_FIND_NEXT, 'G')
731 BAlert* alert = new BAlert(B_TRANSLATE("Find failed"),
745 findresult = _ActiveTermView()->Find(fFindString, fForwardSearch, fMatchCase, fMatchWord);
748 BAlert* alert = new BAlert(B_TRANSLATE("Find failed"),
759 // Enable the menu items Find Next and Find Previous
767 findresult = _ActiveTermView()->Find(fFindString,
771 BAlert* alert = new BAlert(B_TRANSLATE("Find faile
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/bfs/r5/
H A DInode.cpp934 if ((status = tree->Find((uint8 *)name, (uint16)strlen(name), &id)) == B_OK) {
1850 if (tree->Find((uint8 *)name, (uint16)strlen(name), &id) < B_OK)
1894 if (tree->Find((uint8 *)name, (uint16)strlen(name), &id) == B_OK) {
1960 if (tree->Find((uint8 *)name, (uint16)strlen(name), &offset) == B_OK) {
H A DJournal.cpp576 if (fArray.Find(blockNumber) >= 0) {
/haiku-fatelf/src/apps/mail/
H A DMailWindow.cpp339 menu->AddItem(new BMenuItem(B_TRANSLATE("Find" B_UTF8_ELLIPSIS),
341 menu->AddItem(new BMenuItem(B_TRANSLATE("Find again"),
1160 // Find the next message that should be displayed
1377 FindWindow::Find(this);
/haiku-fatelf/build/scripts/
H A Dmacosx_merge_lipo.pl23 use File::Find ();
57 my $destname = $dest . '/' . $File::Find::name;
77 $needs_lipo{$File::Find::name} = 1;
82 File::Find::find (\&eachfile, '.');
/haiku-fatelf/src/add-ons/kernel/file_systems/bfs/
H A DInode.cpp725 // Find the last item or one with the same name we have to add
1291 status_t status = tree->Find((uint8*)name, (uint16)strlen(name), &id);
2482 if (fTree->Find((uint8*)name, (uint16)strlen(name), &id) < B_OK)
2524 if (fTree->Find((uint8*)name, (uint16)strlen(name), &id) == B_OK) {
2603 if (tree->Find((uint8*)name, (uint16)strlen(name), &offset) == B_OK) {
H A DBlockAllocator.cpp772 // Find the block_run that can fulfill the request best
1577 status = tree->Find((uint8*)name, (uint16)strlen(name), &id);
/haiku-fatelf/src/apps/diskprobe/
H A DProbeView.cpp186 void Find(off_t startAt, const uint8 *data, size_t dataSize,
1074 Find(startAt, data, dataSize, caseInsensitive, progressMonitor);
1085 EditorLooper::Find(off_t startAt, const uint8 *data, size_t dataSize, function in class:EditorLooper
1094 off_t foundAt = fEditor.Find(startAt, data, dataSize, caseInsensitive,
1452 menu->AddItem(item = new BMenuItem(B_TRANSLATE("Find" B_UTF8_ELLIPSIS),
1455 menu->AddItem(fFindAgainMenuItem = new BMenuItem(B_TRANSLATE("Find again"),
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/udf/r5/
H A DIcb.cpp139 Icb::Find(const char *filename, vnode_id *id) function in class:Icb
H A DIcb.h93 status_t Find(const char *filename, vnode_id *id);
H A Dudf.cpp487 error = dir->Find(filename, vnodeId);
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/headers/shared/
H A DVector.h91 Iterator Find(const Value &value);
92 Iterator Find(const Value &value, const Iterator &start);
93 ConstIterator Find(const Value &value) const;
94 ConstIterator Find(const Value &value, const ConstIterator &start) const;
631 // Find
641 _VECTOR_CLASS_NAME::Find(const Value &value) function in class:_VECTOR_CLASS_NAME
643 return Find(value, Begin());
646 // Find
658 _VECTOR_CLASS_NAME::Find(const Value &value, const Iterator &start) function in class:_VECTOR_CLASS_NAME
666 // Find
676 _VECTOR_CLASS_NAME::Find(const Value &value) const function in class:_VECTOR_CLASS_NAME
693 _VECTOR_CLASS_NAME::Find(const Value &value, const ConstIterator &start) const function in class:_VECTOR_CLASS_NAME
[all...]
/haiku-fatelf/src/tests/add-ons/kernel/file_systems/userlandfs/r5/src/test/ramfs/
H A DAVLTree.h155 Value *Find(const Key &key, Iterator *iterator = NULL);
392 // Find
395 AVL_TREE_CLASS_NAME::Find(const Key &key, Iterator *iterator) function in class:AVL_TREE_CLASS_NAME
H A DAttributeIndexImpl.cpp245 Attribute **foundAttribute = fAttributes->Find(

Completed in 221 milliseconds

123456