Searched refs:marked (Results 1 - 22 of 22) sorted by relevance

/haiku/src/add-ons/kernel/file_systems/ext2/
H A DBitmapBlock.h44 bool _Check(uint32 start, uint32 length, bool marked);
45 void _FindNext(uint32& pos, bool marked);
H A DBitmapBlock.cpp64 BitmapBlock::_Check(uint32 start, uint32 length, bool marked) argument
88 return (bits & mask) == (marked ? mask : 0);
100 if ((bits & mask) != (marked ? mask : 0)) {
111 if (data[index++] != (marked ? 0xFFFFFFFF : 0)) {
122 if ((bits & mask) != (marked ? mask : 0)) {
245 BitmapBlock::_FindNext(uint32& pos, bool marked) argument
270 if (bits == (marked ? 0 : mask) && index < fMaxIndex) {
271 // Find a 32 bits block that has a marked bit
274 } while (index < fMaxIndex && data[index] == (marked ? 0 : 0xFFFFFFFF));
291 if ((bits & mask) == (marked
[all...]
/haiku/src/kits/interface/
H A DOptionPopUp.cpp330 BMenuItem* marked = menu->FindMarked();
331 if (marked == NULL)
335 *outName = marked->Label();
337 marked->Message()->FindInt32("be:value", outValue);
339 return menu->IndexOf(marked);
H A DMenuItem.cpp104 bool marked; local
105 if (data->FindBool("_marked", &marked) == B_OK)
106 SetMarked(marked);
/haiku/src/libs/print/libprint/
H A DPageSetupDlg.cpp91 bool marked; local
111 marked = false;
124 marked = true;
128 if (!marked)
152 marked = false;
164 marked = true;
168 if (!marked)
H A DJobSetupDlg.cpp708 bool marked = false; local
732 marked = true;
738 if (marked)
/haiku/src/apps/pairs/
H A DPairsWindow.cpp150 BMenuItem* marked = fIconSizeMenu->FindMarked(); local
151 if (marked != NULL) {
152 switch (fIconSizeMenu->IndexOf(marked)) {
/haiku/src/system/boot/loader/
H A Dmenu.cpp86 /** Marks or unmarks a menu item. A marked menu item usually gets a visual
88 * For menus of type CHOICE_MENU, there can only be one marked item - the
93 MenuItem::SetMarked(bool marked) argument
95 if (marked && fMenu != NULL && fMenu->Type() == CHOICE_MENU) {
96 // always set choice text of parent if we were marked
100 if (fIsMarked == marked)
103 if (marked && fMenu != NULL && fMenu->Type() == CHOICE_MENU) {
110 fIsMarked = marked;
569 virtual void SetMarked(bool marked) argument
571 _SetMarked(marked, tru
590 _SetMarked(bool marked, bool updateBlocklist) argument
[all...]
/haiku/src/add-ons/network_settings/dialup/
H A DGeneralAddon.cpp485 BMenuItem *marked = fAuthenticatorField->Menu()->FindMarked(); local
486 if(marked && marked != fAuthenticatorNone)
487 return marked->Message()->FindString("KernelModuleName");
H A DDialUpView.cpp226 BMenuItem *marked = fInterfaceMenu->FindMarked(); local
227 if(marked)
228 marked->SetMarked(false);
/haiku/src/apps/icon-o-matic/gui/
H A DPathListView.h88 void _SetPathMarked(VectorPath* path, bool marked);
110 // those path items will be marked that
H A DStyleListView.h86 void _SetStyleMarked(Style* style, bool marked);
97 // the style item will be marked that
H A DPathListView.cpp160 void SetMarked(bool marked) argument
162 if (fMarked == marked)
164 fMarked = marked;
924 PathListView::_SetPathMarked(VectorPath* path, bool marked) argument
928 item->SetMarked(marked);
H A DStyleListView.cpp161 void SetMarked(bool marked) argument
163 if (fMarked == marked)
165 fMarked = marked;
821 StyleListView::_SetStyleMarked(Style* style, bool marked) argument
825 item->SetMarked(marked);
/haiku/src/apps/showimage/
H A DShowImageWindow.h87 bool marked);
H A DShowImageWindow.cpp582 bool marked = false; local
585 marked = !item->IsMarked();
586 item->SetMarked(marked);
588 fToolBar->SetActionPressed(what, marked);
589 return marked;
604 ShowImageWindow::_MarkMenuItem(BMenu* menu, uint32 what, bool marked) argument
607 if (item && item->IsMarked() != marked)
608 item->SetMarked(marked);
609 fToolBar->SetActionPressed(what, marked);
786 // Make sure the correct page is marked
[all...]
/haiku/headers/private/kernel/boot/
H A Dmenu.h38 virtual void SetMarked(bool marked);
/haiku/src/apps/fontdemo/
H A DControlView.cpp568 BMenuItem* marked = submenu->FindMarked(); local
569 if (marked)
570 marked->SetMarked(false);
/haiku/src/apps/mail/
H A DHeader.cpp309 bool marked = false; local
323 marked = true;
328 if (!marked) {
339 // default account is invalid, set to marked
H A DMailWindow.cpp3358 BMenuItem* marked = fEncodingMenu->FindMarked(); local
3359 if (marked == NULL)
3362 return marked->Message()->GetInt32("charset", defaultCharSet);
/haiku/src/kits/tracker/
H A DFindPanel.cpp1026 // find out if more than one items are marked
1664 // search for marked item in the list
1698 BMenuItem* marked = CurrentMimeType(); local
1699 if (marked != NULL) {
1700 marked->SetMarked(false);
1702 if ((marked = MimeTypeMenu()->FindMarked()) != NULL)
1703 marked->SetMarked(false);
1745 BMenuItem* marked = CurrentMimeType(); local
1746 if (marked != NULL) {
1747 marked
[all...]
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex568 should be read until its end, which is either marked by the unused data

Completed in 443 milliseconds