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

12

/haiku-fatelf/src/add-ons/kernel/file_systems/ext2/
H A DBitmapBlock.h43 bool _Check(uint32 start, uint32 length, bool marked);
44 void _FindNext(uint32& pos, bool marked);
H A DBitmapBlock.cpp61 BitmapBlock::_Check(uint32 start, uint32 length, bool marked) argument
85 return (bits & mask) == (marked ? mask : 0);
97 if ((bits & mask) != (marked ? mask : 0)) {
107 if (data[index++] != (marked ? 0xFFFFFFFF : 0)) {
118 if ((bits & mask) != (marked ? mask : 0)) {
235 BitmapBlock::_FindNext(uint32& pos, bool marked) argument
259 if (bits == (marked ? 0 : mask) && index < fMaxIndex) {
260 // Find a 32 bits block that has a marked bit
263 } while (index < fMaxIndex && data[index] == (marked ? 0 : 0xFFFFFFFF));
280 if ((bits & mask) == (marked
[all...]
/haiku-fatelf/src/preferences/appearance/
H A DAPRView.cpp63 BMenuItem* marked = fDecorMenu->ItemAt(fDecorUtil->IndexOfCurrentDecorator());
64 if (marked)
65 marked->SetMarked(true);
67 marked = fDecorMenu->FindItem("Default");
68 if (marked)
69 marked->SetMarked(true);
/haiku-fatelf/src/kits/interface/
H A DOptionPopUp.cpp315 BMenuItem* marked = menu->FindMarked();
316 if (marked == NULL)
320 *outName = marked->Label();
322 marked->Message()->FindInt32("be:value", outValue);
324 return menu->IndexOf(marked);
H A DMenuItem.cpp99 bool marked; local
100 if (data->FindBool("_marked", &marked) == B_OK)
101 SetMarked(marked);
/haiku-fatelf/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-fatelf/headers/os/interface/
H A DMenuItem.h33 virtual void SetMarked(bool marked);
/haiku-fatelf/headers/private/kernel/boot/
H A Dmenu.h38 void SetMarked(bool marked);
/haiku-fatelf/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 DStyleListView.cpp159 void SetMarked(bool marked) argument
161 if (fMarked == marked)
163 fMarked = marked;
842 StyleListView::_SetStyleMarked(Style* style, bool marked) argument
846 item->SetMarked(marked);
H A DPathListView.cpp161 void SetMarked(bool marked) argument
163 if (fMarked == marked)
165 fMarked = marked;
947 PathListView::_SetPathMarked(VectorPath* path, bool marked) argument
951 item->SetMarked(marked);
/haiku-fatelf/src/apps/showimage/
H A DShowImageWindow.h81 bool marked);
H A DShowImageWindow.cpp546 bool marked = false; local
549 marked = !item->IsMarked();
550 item->SetMarked(marked);
552 fToolBarView->SetActionPressed(what, marked);
553 return marked;
568 ShowImageWindow::_MarkMenuItem(BMenu* menu, uint32 what, bool marked) argument
571 if (item && item->IsMarked() != marked)
572 item->SetMarked(marked);
573 fToolBarView->SetActionPressed(what, marked);
736 // Make sure the correct page is marked
[all...]
/haiku-fatelf/src/tests/kits/net/DialUpPreflet/
H A DGeneralAddon.cpp504 BMenuItem *marked = fAuthenticatorField->Menu()->FindMarked(); local
505 if(marked && marked != fAuthenticatorNone)
506 return marked->Message()->FindString("KernelModuleName");
H A DDialUpView.cpp243 BMenuItem *marked = fInterfaceMenu->FindMarked(); local
244 if(marked)
245 marked->SetMarked(false);
/haiku-fatelf/src/tests/kits/net/preflet/DialUpAddOn/
H A DGeneralAddon.cpp551 BMenuItem *marked = fAuthenticatorField->Menu()->FindMarked(); local
552 if(marked && marked != fAuthenticatorNone)
553 return marked->Message()->FindString("KernelModuleName");
H A DDialUpView.cpp297 BMenuItem *marked = fInterfaceMenu->FindMarked(); local
298 if(marked)
299 marked->SetMarked(false);
/haiku-fatelf/src/system/boot/loader/
H A Dmenu.cpp81 /** Marks or unmarks a menu item. A marked menu item usually gets a visual
83 * For menus of type CHOICE_MENU, there can only be one marked item - the
88 MenuItem::SetMarked(bool marked) argument
90 if (marked && fMenu != NULL && fMenu->Type() == CHOICE_MENU) {
91 // always set choice text of parent if we were marked
95 if (fIsMarked == marked)
98 if (marked && fMenu != NULL && fMenu->Type() == CHOICE_MENU) {
105 fIsMarked = marked;
/haiku-fatelf/src/apps/fontdemo/
H A DControlView.cpp577 BMenuItem* marked = submenu->FindMarked(); local
578 if (marked)
579 marked->SetMarked(false);
/haiku-fatelf/src/kits/tracker/
H A DFindPanel.cpp978 // find out if more than one items are marked
1530 // search for marked item in the list
1564 BMenuItem* marked = CurrentMimeType(); local
1565 if (marked != NULL) {
1566 marked->SetMarked(false);
1568 if ((marked = MimeTypeMenu()->FindMarked()) != NULL)
1569 marked->SetMarked(false);
1607 BMenuItem* marked = CurrentMimeType(); local
1608 if (marked != NULL) {
1609 marked
[all...]
/haiku-fatelf/src/apps/mail/
H A DHeader.cpp323 bool marked = false; local
337 marked = true;
342 if (!marked) {
353 // default account is invalid, set to marked
/haiku-fatelf/src/apps/webpositive/
H A DSettingsWindow.cpp832 bool marked = false; local
836 marked = true;
838 item->SetMarked(marked);
/haiku-fatelf/src/bin/gdb/gdb/
H A DChangeLog-3.x1540 number marked as unsigned; this will allow inclusion of unsigned
2083 * command.c (lookup_cmd_1): End of command marked by anything but
4608 commands to make sure that abbreviations were clearly marked and

Completed in 311 milliseconds

12