Searched refs:family (Results 126 - 150 of 157) sorted by path

1234567

/haiku/src/kits/print/
H A DPicturePrinter.cpp341 void PicturePrinter::SetFontFamily(char *family) { argument
342 Indent(); Print("SetFontFamily"); Print(family); Cr();
H A DTemplate.cpp176 void Template::SetFontFamily(char *family) { argument
/haiku/src/kits/shared/
H A DSettingsMessage.cpp341 font_family family; local
343 value.GetFamilyAndStyle(&family, &style);
346 status_t ret = fontMessage.AddString("family", family);
536 const char* family; local
539 if (fontMessage.FindString("family", &family) != B_OK
546 if (value.SetFamilyAndStyle(family, style) != B_OK)
/haiku/src/libs/compat/freebsd_network/compat/net/
H A Dif_var.h138 * IFENCAP_LL type: pre-calculates link header based on address family
145 * family: address family defined by AF_ constant.
161 int family; /* Address family AF_* (r) */ member in struct:if_encap_req
801 int if_getmtu_family(if_t ifp, int family);
/haiku/src/libs/compat/freebsd_network/
H A Dif.c444 switch (req->family) {
/haiku/src/preferences/appearance/
H A DFontSelectionView.cpp53 extern void _set_system_font_(const char *which, font_family family,
56 font_family family, font_style style, float* _size);
62 _set_system_font_(const char *which, font_family family, argument
72 _get_system_default_font_(const char* which, font_family family, argument
196 const char* family; local
197 if (msg->FindString("family", &family) != B_OK)
203 BMenuItem* familyItem = fFontsMenu->FindItem(family);
213 fCurrentFont.SetFamilyAndStyle(family, item->Label());
222 const char* family; local
277 font_family family; local
317 font_family family; local
332 _set_system_font_(Name(), family, style, fCurrentFont.Size()); local
339 font_family family; local
439 font_family family; local
[all...]
/haiku/src/preferences/keymap/
H A DKeymapWindow.cpp533 font_family family, currentFamily; local
540 if (get_font_family(i, &family, &flags) == B_OK) {
542 = new BMenuItem(family, new BMessage(kMsgMenuFontChanged));
545 if (!strcmp(family, currentFamily))
/haiku/src/preferences/network/
H A DInterfaceAddressView.cpp43 InterfaceAddressView::InterfaceAddressView(int family, argument
47 fFamily(family),
279 // Remove previous address for family
/haiku/src/servers/app/
H A DDesktopSettings.cpp157 const char* family; local
161 if (settings.FindString("plain family", &family) == B_OK
164 FontStyle* fontStyle = gFontManager->GetStyle(family, style);
169 if (settings.FindString("bold family", &family) == B_OK
172 FontStyle* fontStyle = gFontManager->GetStyle(family, style);
177 if (settings.FindString("fixed family", &family) == B_OK
180 FontStyle* fontStyle = gFontManager->GetStyle(family, styl
[all...]
H A DPictureBoundingBoxPlayer.cpp618 BString family(_family, length);
619 FontStyle* fontStyle = gFontManager->GetStyleByIndex(family, 0);
H A DServerApp.cpp1588 // 1) uint16 - family ID of added font
1644 // 1) uint16 - family ID of added font
1772 // 2) string - family
1833 // 1) string - family
1852 // 1) uint16 - family ID
1924 // 1) int32 the index of the font family to get
1927 // 1) string - name of family
1928 // 2) uint32 - flags of font family (B_IS_FIXED || B_HAS_TUNED_FONT)
1929 // 3) count of styles in that family
1940 FontFamily* family local
2025 font_family family; local
[all...]
H A DServerFont.cpp271 \param familyID ID number of the family to set
310 \param fontID the combination of family and style ID numbers
317 uint16 family = (fontID & 0xFFFF0000) >> 16; local
319 return SetFamilyAndStyle(family, style, fontManager);
378 \return the combination of family and style ID numbers
H A DServerPicture.cpp791 BString family(_family, length);
793 FontStyle* fontStyle = gFontManager->GetStyleByIndex(family, 0);
/haiku/src/servers/app/font/
H A DFontManager.cpp108 /*! \brief Counts the number of styles available in a font family
109 \param family Name of the font family to scan
110 \return The number of font styles currently available for the font family
115 FontFamily *family = GetFamily(familyName); local
116 if (family != NULL)
117 return family->CountStyles();
123 /*! \brief Counts the number of styles available in a font family
124 \param family Name of the font family t
130 FontFamily *family = GetFamily(familyID); local
177 FontFamily* family = GetFamily(familyName); local
188 FontFamily* family = GetFamily(familyID); local
233 FontFamily* family; local
269 FontFamily* family = fFamilies.ItemAt(i); local
288 FontFamily* family = style->Family(); local
353 FontFamily* family = style->Family(); local
400 FontFamily* family = fFamilies.ItemAt(i); local
[all...]
H A DFontManager.h41 virtual int32 CountStyles(const char* family);
48 FontStyle* GetStyleByIndex(const char* family,
69 FontFamily* _FindFamily(const char* family) const;
85 FontKey(uint16 family, uint16 style) argument
86 : familyID(family), styleID(style) {}
H A DFontStyle.cpp228 FontStyle::_SetFontFamily(FontFamily* family, uint16 id) argument
233 fFamily.SetTo(family);
H A DFontStyle.h149 void _SetFontFamily(FontFamily* family, uint16 id);
H A DGlobalFontManager.cpp64 BString family; member in struct:GlobalFontManager::font_mapping
327 GlobalFontManager::_AddDefaultMapping(const char* family, const char* style, argument
334 mapping->family = family;
377 FTRACE(("_AddMappedFont(family = \"%s\", style = \"%s\")\n",
383 if (mapping->family == familyName) {
527 /*! \brief Counts the number of styles available in a font family
528 \param family Name of the font family to scan
529 \return The number of font styles currently available for the font family
536 FontFamily* family = GetFamily(familyName); local
553 FontFamily* family = GetFamily(familyID); local
586 FontFamily* family; local
[all...]
H A DGlobalFontManager.h51 virtual int32 CountStyles(const char* family);
77 void _AddDefaultMapping(const char* family,
80 status_t _AddMappedFont(const char* family,
/haiku/src/servers/net/
H A DNetServer.cpp73 bool _IsValidFamily(uint32 family);
306 /*! Checks if provided address family is valid.
310 NetServer::_IsValidFamily(uint32 family) argument
313 int socket = ::socket(family, SOCK_DGRAM, 0);
323 family, and, in case of ethernet, a hardware MAC address.
688 address.AddString("family", "inet");
799 v4address.AddString("family", "inet");
806 v6address.AddString("family", "inet6");
/haiku/src/system/boot/arch/x86/
H A Darch_cpu.cpp365 int family = info.eax_1.family; local
367 if (family == 0x6 || family == 0xf) {
368 family += info.eax_1.extended_family;
373 "%02x-%02x-%02x", family, model, info.eax_1.stepping);
374 } else if (family < 0x15) {
379 "microcode_amd_fam%02xh.bin", family);
/haiku/src/system/kernel/arch/x86/64/
H A Derrata.cpp14 needs_zenbleed_patch(const uint32 family, const uint32 model, const uint64 microcode) argument
16 if (family != 0x17)
43 const uint32 family = cpu->arch.family + cpu->arch.extended_family, local
56 switch (family) {
71 if (family == 0x16 && model <= 0xf) {
77 if (family == 0x17 && model == 0x1) {
120 if (needs_zenbleed_patch(family, model, microcode)) {
/haiku/src/system/kernel/arch/x86/
H A Darch_cpu.cpp1313 // get the family, model, stepping
1316 cpu->arch.family = cpuid.eax_1.family;
1322 dprintf("CPU %d: type %d family %d extended_family %d model %d "
1324 currentCPU, cpu->arch.type, cpu->arch.family,
1560 uint32 family = cpu->arch.family + cpu->arch.extended_family;
1562 return (family < 0x12 && family > 0xf) || (family
[all...]
H A Darch_system_info.cpp100 | (cpu->arch.family << 8) | (cpu->arch.model << 4) | cpu->arch.stepping;
/haiku/src/system/kernel/fs/
H A Dsocket.cpp351 common_socket(int family, int type, int protocol, bool kernel) argument
358 status_t error = sStackInterface->open(family, type, protocol, &socket);
585 common_socketpair(int family, int type, int protocol, int fds[2], bool kernel) argument
591 status_t error = sStackInterface->socketpair(family, type, protocol,
616 common_get_next_socket_stat(int family, uint32 *cookie, struct net_stat *stat) argument
621 status_t status = sStackInterface->get_next_socket_stat(family, cookie,
633 socket(int family, int type, int protocol) argument
636 RETURN_AND_SET_ERRNO(common_socket(family, type, protocol, true));
778 socketpair(int family, int type, int protocol, int socketVector[2]) argument
781 RETURN_AND_SET_ERRNO(common_socketpair(family, typ
790 _user_socket(int family, int type, int protocol) argument
1212 _user_socketpair(int family, int type, int protocol, int *userSocketVector) argument
1240 _user_get_next_socket_stat(int family, uint32 *_cookie, struct net_stat *_stat) argument
[all...]

Completed in 238 milliseconds

1234567