Searched refs:family (Results 76 - 100 of 430) sorted by relevance

1234567891011>>

/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKPreferencesRef.h103 WK_EXPORT void WKPreferencesSetStandardFontFamily(WKPreferencesRef preferencesRef, WKStringRef family);
106 WK_EXPORT void WKPreferencesSetFixedFontFamily(WKPreferencesRef preferencesRef, WKStringRef family);
109 WK_EXPORT void WKPreferencesSetSerifFontFamily(WKPreferencesRef preferencesRef, WKStringRef family);
112 WK_EXPORT void WKPreferencesSetSansSerifFontFamily(WKPreferencesRef preferencesRef, WKStringRef family);
115 WK_EXPORT void WKPreferencesSetCursiveFontFamily(WKPreferencesRef preferencesRef, WKStringRef family);
118 WK_EXPORT void WKPreferencesSetFantasyFontFamily(WKPreferencesRef preferencesRef, WKStringRef family);
121 WK_EXPORT void WKPreferencesSetPictographFontFamily(WKPreferencesRef preferencesRef, WKStringRef family);
/macosx-10.10.1/Libinfo-459/lookup.subproj/
H A Dsi_getaddrinfo.c156 case EAI_ADDRFAMILY: return "Address family for nodename not supported";
611 * based on the address family input value. If the input addres family is
616 _gai_numerichost(const char* nodename, uint32_t *family, int flags, struct in_addr *a4, struct in6_addr *a6, int *scope) argument
627 if (((*family == AF_UNSPEC) || (*family == AF_INET)) || ((*family == AF_INET6) && (flags & AI_V4MAPPED) && (flags & AI_ALL)))
633 if ((*family == AF_UNSPEC) || (*family == AF_INET6))
656 if (*family
849 _gai_simple(si_mod_t *si, const void *nodeptr, const void *servptr, uint32_t family, uint32_t socktype, uint32_t proto, uint32_t flags, const char *interface, uint32_t *err) argument
930 _gai_srv(si_mod_t *si, const char *node, const char *serv, uint32_t family, uint32_t socktype, uint32_t proto, uint32_t flags, const char *interface, uint32_t *err) argument
1011 si_addrinfo(si_mod_t *si, const char *node, const char *serv, uint32_t family, uint32_t socktype, uint32_t proto, uint32_t flags, const char *interface, uint32_t *err) argument
1426 si_ipnode_byname(si_mod_t *si, const char *name, int family, int flags, const char *interface, uint32_t *err) argument
[all...]
/macosx-10.10.1/ruby-106/ruby/ext/socket/
H A Doption.c39 * Socket::Option.new(family, level, optname, data) => sockopt
50 int family = rsock_family_arg(vfamily); local
51 int level = rsock_level_arg(family, vlevel);
52 int optname = rsock_optname_arg(family, level, voptname);
54 rb_ivar_set(self, rb_intern("family"), INT2NUM(family));
62 rsock_sockopt_new(int family, int level, int optname, VALUE data) argument
66 sockopt_initialize((VALUE)obj, INT2NUM(family), INT2NUM(level), INT2NUM(optname), data);
72 * sockopt.family => integer
74 * returns the socket family a
158 int family = rsock_family_arg(vfamily); local
206 int family = rsock_family_arg(vfamily); local
669 int family = NUM2INT(sockopt_family_m(self)); local
[all...]
H A Dancdata.c42 * Socket::AncillaryData.new(family, cmsg_level, cmsg_type, cmsg_data) -> ancillarydata
75 int family = rsock_family_arg(vfamily); local
76 int level = rsock_level_arg(family, vlevel);
77 int type = rsock_cmsg_type_arg(family, level, vtype);
79 rb_ivar_set(self, rb_intern("family"), INT2NUM(family));
87 ancdata_new(int family, int level, int type, VALUE data) argument
91 ancillary_initialize((VALUE)obj, INT2NUM(family), INT2NUM(level), INT2NUM(type), data);
98 VALUE v = rb_attr_get(self, rb_intern("family"));
104 * ancillarydata.family
366 int family = rsock_family_arg(vfamily); local
955 int family, level, type; local
1092 int family = ancillary_family(self); local
1143 int family; local
1494 int family; local
[all...]
H A Dbasicsocket.c210 int family, level, option; local
227 family = rsock_getfamily(fptr->fd);
228 level = rsock_level_arg(family, lev);
229 option = rsock_optname_arg(family, level, optname);
323 int family; local
326 family = rsock_getfamily(fptr->fd);
327 level = rsock_level_arg(family, lev);
328 option = rsock_optname_arg(family, level, optname);
337 return rsock_sockopt_new(family, level, option, rb_str_new(buf, len));
H A Dudpsocket.c30 int family = AF_INET; local
35 family = rsock_family_arg(arg);
37 fd = rsock_socket(family, SOCK_DGRAM, 0);
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebPreferences.h59 /* [retval][out] */ BSTR* family);
62 /* [in] */ BSTR family);
65 /* [retval][out] */ BSTR* family);
68 /* [in] */ BSTR family);
74 /* [in] */ BSTR family);
77 /* [retval][out] */ BSTR* family);
80 /* [in] */ BSTR family);
83 /* [retval][out] */ BSTR* family);
86 /* [in] */ BSTR family);
89 /* [retval][out] */ BSTR* family);
[all...]
H A DWebPreferences.cpp600 /* [retval][out] */ BSTR* family)
602 *family = stringValueForKey(WebKitStandardFontPreferenceKey);
603 return (*family) ? S_OK : E_FAIL;
607 /* [in] */ BSTR family)
609 setStringValue(WebKitStandardFontPreferenceKey, family);
614 /* [retval][out] */ BSTR* family)
616 *family = stringValueForKey(WebKitFixedFontPreferenceKey);
617 return (*family) ? S_OK : E_FAIL;
621 /* [in] */ BSTR family)
623 setStringValue(WebKitFixedFontPreferenceKey, family);
599 standardFontFamily( BSTR* family) argument
606 setStandardFontFamily( BSTR family) argument
613 fixedFontFamily( BSTR* family) argument
620 setFixedFontFamily( BSTR family) argument
634 setSerifFontFamily( BSTR family) argument
641 sansSerifFontFamily( BSTR* family) argument
648 setSansSerifFontFamily( BSTR family) argument
655 cursiveFontFamily( BSTR* family) argument
662 setCursiveFontFamily( BSTR family) argument
669 fantasyFontFamily( BSTR* family) argument
676 setFantasyFontFamily( BSTR family) argument
683 pictographFontFamily( BSTR* family) argument
690 setPictographFontFamily( BSTR family) argument
[all...]
/macosx-10.10.1/apr-32/apr/apr/test/
H A Dsendfile.c56 static void apr_setup(apr_pool_t **p, apr_socket_t **sock, int *family) argument
80 rv = apr_socket_create(sock, *family, SOCK_STREAM, 0, *p);
88 if (*family == APR_UNSPEC) {
98 *family = localsa->family;
184 int family; local
187 family = APR_INET;
188 apr_setup(&p, &sock, &family);
202 rv = apr_sockaddr_info_get(&destsa, host, family, TESTSF_PORT, 0, p);
498 int family; local
[all...]
H A Dtestipsub.c110 int family; member in struct:__anon6180
138 rv = apr_sockaddr_info_get(&sa, testcases[i].in_subnet, testcases[i].family, 0, 0, p);
144 rv = apr_sockaddr_info_get(&sa, testcases[i].not_in_subnet, testcases[i].family, 0, 0, p);
/macosx-10.10.1/sudo-73/src/
H A Dmatch.c637 int family; local
641 family = AF_INET6;
645 family = AF_INET;
651 if (ifp->family != family)
653 switch (family) {
690 int family; local
694 family = AF_INET6;
698 family = AF_INET;
702 if (family
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/lwres/
H A Dgetnameinfo.c170 int family, i; local
196 family = sa->sa_family;
198 if (afdl[i].a_af == family) {
208 switch (family) {
298 switch (family) {
/macosx-10.10.1/remote_cmds-47/logger.tproj/
H A Dlogger.c79 int family = PF_UNSPEC; /* protocol family (IPv4, IPv6 or both) */ variable
81 int family = PF_INET; /* protocol family (IPv4 only) */ variable
112 family = PF_INET;
116 family = PF_INET6;
225 hints.ai_family = family;
/macosx-10.10.1/bind9-45.101/bind9/contrib/queryperf/missing/
H A Dgetnameinfo.c97 int family, len, i; local
114 family = sa->sa_family;
116 if (afdl[i].a_af == family) {
/macosx-10.10.1/bind9-45.101/bind9/lib/dns/
H A Dacl.c193 isc_uint16_t bitlen, family; local
206 reqaddr->family != AF_INET6 ||
215 family = addr->family;
216 bitlen = family == AF_INET6 ? 128 : 32;
227 match_num = node->node_num[ISC_IS6(family)];
228 if (*(isc_boolean_t *) node->data[ISC_IS6(family)] == ISC_TRUE)
503 int bitlen, family; local
506 family = prefix->family;
[all...]
/macosx-10.10.1/rsync-45/rsync/lib/
H A Dgetnameinfo.c89 int family, i; local
105 family = sa->sa_family;
107 if (afdl[i].a_af == family) {
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-en/
H A Danilabel.rb125 :font=>{:family=>'Courier', :size=>10})
127 :font=>{:family=>'Courier', :size=>10})
129 :font=>{:family=>'Courier', :size=>10}, :width=>18)
/macosx-10.10.1/ruby-106/ruby/ext/tk/sample/demos-jp/
H A Danilabel.rb128 :font=>{:family=>'Courier', :size=>10})
130 :font=>{:family=>'Courier', :size=>10})
132 :font=>{:family=>'Courier', :size=>10}, :width=>18)
/macosx-10.10.1/bind9-45.101/bind9/unit/atf-src/atf-report/
H A Dtests-results.css37 font-family: Arial;
44 font-family: Arial;
52 font-family: Arial;
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DCompletionSuggestionsView.css59 font-family: Menlo, monospace;
H A DQuickConsole.css39 font-family: Menlo, monospace;
/macosx-10.10.1/bind9-45.101/bind9/bin/named/
H A Dinterfacemgr.c511 prefixlen = (netaddr->family == AF_INET) ? 32 : 128;
522 if (result != ISC_R_SUCCESS && netaddr->family == AF_INET6)
696 unsigned int family; local
702 family = interface.address.family;
703 if (family != AF_INET && family != AF_INET6)
705 if (scan_ipv4 == ISC_FALSE && family == AF_INET)
707 if (scan_ipv6 == ISC_FALSE && family == AF_INET6)
717 if (family
[all...]
/macosx-10.10.1/dcerpc-61/www/content/css/blueprint/src/
H A Dreset.css20 font-family: inherit;
/macosx-10.10.1/ruby-106/ruby/test/socket/
H A Dtest_ancdata.rb20 assert_equal(Socket::AF_INET, ancdata.family)
44 assert_equal(Socket::AF_INET6, ancdata.family)
/macosx-10.10.1/tcl-105/tk/tk/macosx/
H A DtkMacOSXFont.c133 faPtr->family = Tk_GetUid([[nsFont familyName] UTF8String]);
146 * attributes, and do a case-insensitive search for font family names
170 NSString *family;
173 family = [[[NSString alloc] initWithUTF8String:familyName] autorelease];
175 family = [defaultFont familyName];
180 nsFont = [fm fontWithFamily:family traits:traits weight:weight size:size];
186 if ([family caseInsensitiveCompare:f] == NSOrderedSame) {
197 nsFont = [NSFont fontWithName:family size:size];
200 nsFont = [fm convertFont:defaultFont toFamily:family];
397 fa.family
168 NSString *family; local
629 NSString *family = [subFontDesc objectForKey:NSFontFamilyAttribute]; local
[all...]

Completed in 349 milliseconds

1234567891011>>