Searched refs:item (Results 576 - 600 of 629) sorted by relevance

<<212223242526

/haiku/src/add-ons/kernel/file_systems/reiserfs/
H A Dkernel_interface.cpp557 DirItem item; local
562 && (error = iterator->GetNext(&item, &index, &entry)) == B_OK) {
580 const char *name = item.EntryNameAt(index, &nameLen);
/haiku/src/kits/tracker/infowindow/
H A DHeaderView.cpp496 // If it was a double click, then tell Tracker to open the item
567 // setup a navigation menu item which will dynamically load items
594 BMenuItem* item = new BMenuItem(B_TRANSLATE("Unmount"), local
596 parent->AddItem(item);
597 // volume model, enable/disable the Unmount item
603 item->SetEnabled(false);
/haiku/src/kits/interface/
H A DMenuItem.cpp560 BMenuItem* item = menu->FindMarked(); local
562 if (menu->IsRadioMode() && menu->IsLabelFromMarked() && item != NULL)
563 SetLabel(item->Label());
646 debugger("Error - can't add menu or menu item to more than 1 container"
760 // Leave space for the submenu arrow if any item in the menu has a submenu
/haiku/src/kits/tracker/
H A DSettingsViews.cpp796 BMenuItem* item; local
797 menu->AddItem(item = new BMenuItem(
800 item->SetMarked(true);
H A DFindPanel.h190 status_t SetCurrentMimeType(BMenuItem* item);
225 // add one more attribute item to the attr view
227 // remove the last attribute item
/haiku/src/apps/drivesetup/
H A DDiskView.cpp434 BLayoutItem* item = layout->ItemAt(i); local
435 if (!item)
438 = dynamic_cast<PartitionView*>(item->View());
/haiku/src/apps/haikudepot/ui/
H A DRatePackageWindow.cpp297 BMenuItem* item = new BMenuItem(stability->Name(), message); local
298 menu->AddItem(item);
302 item->SetMarked(true);
/haiku/src/libs/alm/
H A DArea.cpp494 Area::Area(BLayoutItem* item) argument
496 fLayoutItem(item),
628 // otherwise we can just align the item in the free space
/haiku/src/preferences/keymap/
H A DModifierKeysWindow.cpp181 // menuitem contains the item we want to set
182 // key contains the item we want to set it to.
292 // add separator item
300 BMenuItem* item = new BMenuItem(B_TRANSLATE_NOCOLLECT(_KeyToString(key)), message); local
301 menu->AddItem(item, key);
/haiku/src/add-ons/kernel/drivers/audio/ice1712/
H A Dice1712.cpp705 const char *item; local
708 item = get_driver_parameter(settings_handle,
710 if (item != NULL) {
711 uint32 value = strtoul(item, &end, 0);
/haiku/headers/os/add-ons/network_settings/
H A DNetworkSettings.h95 int32& _index, BMessage& item) const;
/haiku/src/apps/diskusage/
H A DInfoWindow.cpp78 Item item; local
/haiku/src/apps/softwareupdater/
H A DSoftwareUpdaterWindow.h80 int NameCompare(PackageItem* item);
/haiku/src/add-ons/kernel/file_systems/ntfs/libntfs/
H A Dsecurity.c1491 const struct CACHED_SECURID *item)
1504 isize = (item->variable ?
1506 + (((struct POSIX_SECURITY*)item->variable)->acccnt
1507 + ((struct POSIX_SECURITY*)item->variable)->defcnt)
1510 return ((cached->uid != item->uid)
1511 || (cached->gid != item->gid)
1512 || (cached->dmode != item->dmode)
1517 &((struct POSIX_SECURITY*)item->variable)->acl, csize)));
1519 return ((cached->uid != item->uid)
1520 || (cached->gid != item
1490 compare(const struct CACHED_SECURID *cached, const struct CACHED_SECURID *item) argument
1525 leg_compare(const struct CACHED_PERMISSIONS_LEGACY *cached, const struct CACHED_PERMISSIONS_LEGACY *item) argument
4324 struct MAPLIST *item; local
[all...]
/haiku/src/apps/haikudepot/server/
H A DServerPkgDataUpdateProcess.cpp47 virtual bool Handle(DumpExportPkg* item);
/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Demuxki.c2880 const char *item; local
2884 item = get_driver_parameter (settings_handle, "channels", NULL, NULL);
2885 if (item) {
2886 value = strtoul (item, &end, 0);
2890 item = get_driver_parameter (settings_handle, "bitsPerSample", NULL, NULL);
2891 if (item) {
2892 value = strtoul (item, &end, 0);
2896 item = get_driver_parameter (settings_handle, "sample_rate", NULL, NULL);
2897 if (item) {
2898 value = strtoul (item,
[all...]
/haiku/src/kits/network/libnetapi/
H A DNetworkSettings.cpp862 BMessage& item) const
865 while (container.FindMessage(itemField, index, &item) == B_OK) {
867 if (item.FindString(nameField, &itemName) == B_OK
884 BMessage item; local
886 if (_GetItem(container, itemField, nameField, name, index, item) == B_OK) {
/haiku/src/servers/launch/
H A DLaunchDaemon.cpp1351 LogItem* item = iterator.Next(); local
1352 if (!item->Matches(jobName.IsEmpty() ? NULL : jobName.String(),
1358 itemMessage.AddUInt64("when", item->When());
1359 itemMessage.AddInt32("type", (int32)item->Type());
1360 itemMessage.AddString("message", item->Message());
1363 item->GetParameter(parameter);
1366 info.AddMessage("item", &itemMessage);
/haiku/src/apps/icon-o-matic/import_export/svg/
H A Dnanosvg.h1689 char item[64]; local
1699 str = nsvg__getNextDashItem(str, item);
1700 if (!*item) break;
1702 strokeDashArray[count++] = fabsf(nsvg__parseCoordinate(p, item, 0.0f, nsvg__actualLength(p)));
2194 char item[64]; local
2216 s = nsvg__getNextPathItem(s, item);
2217 if (!*item) break;
2218 if (nsvg__isnum(item[0])) {
2220 args[nargs++] = (float)nsvg__atof(item);
2279 cmd = item[
2466 char item[64]; local
[all...]
/haiku/src/libs/glut/
H A Dglutint.h530 UINT unique; /* unique menu item id (Win32 only) */
626 extern void (*__glutMenuItemEnterOrLeave)(GLUTmenuItem * item,
672 extern void __glutSetMenuItem(GLUTmenuItem * item,
/haiku/src/apps/debugger/user_interface/gui/team_window/
H A DSourceView.cpp1988 BMenuItem* item = new(std::nothrow) BMenuItem(text, message); local
1989 if (item == NULL)
1991 ObjectDeleter<BMenuItem> itemDeleter(item);
1994 if (!menu->AddItem(item))
2012 BMenuItem* item = new(std::nothrow) BMenuItem(text, message); local
2013 if (item == NULL)
2015 ObjectDeleter<BMenuItem> itemDeleter(item);
2018 if (!menu->AddItem(item))
/haiku/src/kits/media/
H A DMediaFormats.cpp392 meta_format* item = sFormats.ItemAt(index); local
398 *item = *newItem;
/haiku/src/apps/mail/
H A DAddressTextControl.cpp762 BMenuItem* item = new BMenuItem( local
764 fRefDropMenu->AddItem(item);
H A DMailApp.cpp601 int32 item = 0; local
613 while (msg->HasRef("refs", item)) {
614 msg->FindRef("refs", item++, &ref);
/haiku/src/add-ons/kernel/network/ppp/shared/libkernelppp/
H A DKPPPInterface.cpp1918 inline void operator() (T *item) argument
1920 if (!item || !item->IsEnabled())
1922 status_t tmp = item->StackControl(fOp, fData);

Completed in 626 milliseconds

<<212223242526