Searched refs:label (Results 201 - 225 of 351) sorted by relevance

1234567891011>>

/haiku/src/apps/mail/
H A DSignature.h108 TNameControl(const char* label,
H A DHeader.cpp94 LabelView(const char* label);
109 HeaderTextControl(const char* label,
125 LabelView::LabelView(const char* label) argument
127 BStringView("label", label),
149 // TODO: solve this better (alignment of label and text)
166 HeaderTextControl::HeaderTextControl(const char* label, const char* name, argument
169 BTextControl(label, name, message)
215 // TODO: solve this better (alignment of label and text)
/haiku/src/preferences/mail/
H A DConfigWindow.h40 AccountItem(const char* label,
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A DVolume.h33 status_t Initialize(int fd, const char* label,
/haiku/src/apps/webpositive/tabview/
H A DTabView.h47 void SetLabel(const char* label);
H A DTabView.cpp178 TabView::SetLabel(const char* label) argument
180 if (fLabel == label)
183 fLabel = label;
/haiku/src/preferences/input/
H A DMouseView.cpp302 char label[2] = {0}; local
304 label[0] = number + '1';
308 DrawString(label,
309 BPoint(border.left + (border.Width() - StringWidth(label)) / 2,
/haiku/src/add-ons/kernel/file_systems/xfs/
H A DVolume.h30 status_t Initialize(int fd, const char *label,
/haiku/src/system/boot/platform/efi/
H A Dvideo.cpp301 char label[64]; local
302 snprintf(label, sizeof(label), "%lux%lu %lu bit", mode->width,
305 menu->AddItem(item = new (std::nothrow)MenuItem(label));
/haiku/src/servers/keystore/
H A DKeyRequestWindow.cpp64 BStringView* label = new(std::nothrow) BStringView("keyringLabel", local
66 if (label == NULL)
70 layout->AddView(label, 0, row);
/haiku/src/kits/tracker/
H A DTrackerSettingsWindow.cpp51 SettingsItem(const char* label, SettingsView* view);
313 SettingsItem::SettingsItem(const char* label, SettingsView* view) argument
315 BStringItem(label),
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DWidgetLayoutTest.cpp214 // label
215 StringView* label = new StringView(labelText); local
216 label->SetAlignment(B_ALIGN_RIGHT);
217 group->AddChild(label);
225 // "," label
/haiku/src/preferences/notifications/
H A DGeneralView.cpp347 BString label; local
348 format.Format(label, value);
349 fDurationSlider->SetLabel(label.String());
/haiku/src/kits/storage/sniffer/
H A DPattern.cpp56 void dumpStr(const std::string &string, const char *label = NULL) {
57 if (label)
58 printf("%s: ", label);
/haiku/src/apps/installer/
H A DInstallerWindow.cpp757 BString label; local
759 label = srcItem->MenuLabel();
762 label = B_TRANSLATE_COMMENT("<none>", "No partition available");
764 label = ((PartitionMenuItem*)fSrcMenu->ItemAt(0))->MenuLabel();
766 fSrcMenuField->MenuItem()->SetLabel(label.String());
788 label = dstItem->MenuLabel();
791 label = B_TRANSLATE_COMMENT("<none>", "No partition available");
793 label = B_TRANSLATE("Please choose target");
795 fDestMenuField->MenuItem()->SetLabel(label.String());
846 label
[all...]
/haiku/src/preferences/virtualmemory/
H A DSettingsWindow.cpp56 SizeSlider::SizeSlider(const char* name, const char* label, argument
59 BSlider(name, label, message, min, max, B_HORIZONTAL,
107 BString label; local
108 label << name << " (" << path.Path() << ")";
109 SetLabel(label);
/haiku/src/servers/print/
H A DConfigWindow.cpp69 const char *label; member in struct:PageFormat
104 GetPageFormat(float w, float h, BString& label) argument
111 label = B_TRANSLATE_NOCOLLECT(pf.label);
117 label << (w / unit) << "x" << (h / unit) << " in.";
/haiku/src/apps/cortex/InfoView/
H A DInfoView.cpp72 // store the label & text for each field, and provide methods
83 BString label,
368 BString label,
372 m_fields->AddItem(new _InfoTextField(label, text, this));
382 BString label,
385 : m_label(label),
425 // Draw label
/haiku/src/libs/libfdt/
H A Dfdt_overlay.c355 * @label: Label of the node referenced by the phandle
372 int poffset, const char *label)
383 symbol_path = fdt_getprop(fdt, symbols_off, label,
432 const char *label; local
436 &label, &len);
485 poffset, label);
368 overlay_fixup_one_phandle(void *fdt, void *fdto, int symbols_off, const char *path, uint32_t path_len, const char *name, uint32_t name_len, int poffset, const char *label) argument
/haiku/src/apps/screenshot/
H A DScreenshotWindow.cpp346 BString label(path.Path());
347 _AddItemToPathMenu(path.Path(), label, 3, true);
495 BString label(B_TRANSLATE("Home folder"));
496 _AddItemToPathMenu(path.Path(), label, 0,
500 label.SetTo(B_TRANSLATE("Desktop"));
501 _AddItemToPathMenu(path.Path(), label, 0,
507 label.SetTo(B_TRANSLATE("Artwork folder"));
508 _AddItemToPathMenu(path.Path(), label, 2,
536 ScreenshotWindow::_AddItemToPathMenu(const char* path, BString& label, argument
559 fOutputPathMenu->TruncateString(&label, B_TRUNCATE_MIDDL
[all...]
/haiku/src/system/libnetwork/netresolv/nameser/
H A Dns_name.c47 #define NS_TYPE_ELT 0x40 /*%< EDNS0 extended label type */
202 *\li Enforces label and domain length limits.
219 * Enforces label and domain length limits.
223 u_char *label, *bp, *eom; local
230 label = bp++;
234 if (c == '[') { /*%< start a bit string label */
240 &label, &bp, eom))
246 label = bp++;
280 c = (int)(bp - label - 1);
285 if (label >
[all...]
/haiku/src/system/boot/loader/
H A Dmenu.cpp54 MenuItem::MenuItem(const char *label, Menu *subMenu) argument
56 fLabel(strdup(label)),
166 Note, unlike the label, the string is not copied, it's
185 MenuItem::SetLabel(const char* label) argument
187 if (char* newLabel = strdup(label)) {
294 Menu::FindItem(const char* label) argument
298 if (item->Label() != NULL && !strcmp(item->Label(), label))
526 BlocklistMenuItem(char* label, Node* node, Menu* subMenu) argument
528 MenuItem(label, subMenu),
681 // Get the node name and duplicate it, so we can use it as a label
809 PackageVolumeStateMenuItem(const char* label, PackageVolumeInfo* volumeInfo, PackageVolumeState* volumeState) argument
941 char label[128]; local
[all...]
/haiku/src/add-ons/media/media-add-ons/vst_host/
H A DVSTNode.cpp654 BNullParameter* label; local
697 label = group->MakeNullParameter(P_LABEL + param->Index(),
707 label->AddOutput(value);
708 value->AddInput(label);
721 label = fAboutGroup->MakeNullParameter(P_ABOUT + 0,
730 label = fAboutGroup->MakeNullParameter(P_ABOUT + 1,
739 label = fAboutGroup->MakeNullParameter(P_ABOUT + 2,
748 label = fAboutGroup->MakeNullParameter(P_ABOUT + 3,
753 label = fAboutGroup->MakeNullParameter(P_ABOUT + 4,
758 label
[all...]
/haiku/src/add-ons/screen_savers/nebula/
H A DNebula.cpp420 SimpleSlider(const char* label, BMessage* message) argument
427 fLabel = label;
495 BString label; local
497 label.SetTo(B_TRANSLATE("screen resolution"));
499 label.SetToFormat(B_TRANSLATE("%" B_PRId32 " pixels"), widths[i]);
504 BMenuItem* item = new BMenuItem(label.String(), message);
/haiku/src/kits/interface/
H A DAlert.cpp364 BAlert::AddButton(const char* label, char key) argument
366 if (label == NULL || label[0] == '\0')
369 BButton* button = _CreateButton(fButtons.size(), label);
573 BAlert::_CreateButton(int32 which, const char* label) argument
584 return new(std::nothrow) BButton(name, label, message);
611 // Get width of widest label

Completed in 231 milliseconds

1234567891011>>