HomeSort by relevance Sort by last modified time
    Searched refs:family (Results 101 - 125 of 552) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webkit/Source/WebCore/platform/graphics/haiku/
FontPlatformData.h 47 FontPlatformData(const FontDescription&, const AtomicString& family);
  /system/core/libnl_2/
Android.mk 15 genl/family.c \
  /external/webkit/Source/WebKit/win/Interfaces/
IWebPreferences.idl 83 HRESULT standardFontFamily([out, retval] BSTR* family);
84 HRESULT setStandardFontFamily([in] BSTR family);
86 HRESULT fixedFontFamily([out, retval] BSTR* family);
87 HRESULT setFixedFontFamily([in] BSTR family);
90 HRESULT setSerifFontFamily([in] BSTR family);
92 HRESULT sansSerifFontFamily([out, retval] BSTR* family);
93 HRESULT setSansSerifFontFamily([in] BSTR family);
95 HRESULT cursiveFontFamily([out, retval] BSTR* family);
96 HRESULT setCursiveFontFamily([in] BSTR family);
98 HRESULT fantasyFontFamily([out, retval] BSTR* family);
    [all...]
  /external/skia/legacy/src/ports/
SkFontHost_android.cpp 90 /* This guy holds a mapping of a name -> family, used for looking up fonts.
99 void construct(const char name[], FamilyRec* family) {
101 fFamily = family; // we don't own this, so just record the reference
106 // we don't own family, so just ignore our reference
130 static SkTypeface* findBestFaceLocked(const FamilyRec* family,
132 SkTypeface* const* faces = family->fFaces;
157 static SkTypeface* FindBestFace(const FamilyRec* family,
160 return findBestFaceLocked(family, style);
201 /* Remove reference to this face from its family. If the resulting family
205 FamilyRec* family = findFamilyLocked(face); local
255 const FamilyRec* family = findFamilyLocked(familyMember); local
307 FamilyRec* family = removeFromFamilyLocked(typeface); local
685 FontFamily *family = fontFamilies[i]; local
793 FamilyRec* family = findFamilyLocked(tf); local
    [all...]
  /external/iproute2/ip/
ipneigh.c 33 int family; member in struct:__anon9116
155 if (d == NULL || !dst_ok || dst.family == AF_UNSPEC) {
159 req.ndm.ndm_family = dst.family;
207 if (filter.family && filter.family != r->ndm_family)
219 if (filter.pfx.family) {
222 dst.family = r->ndm_family;
322 if (!filter.family)
323 filter.family = preferred_family;
365 get_prefix(&filter.pfx, *argv, filter.family);
    [all...]
ipxfrm.c 283 __u8 mode, __u32 reqid, __u16 family, int force_spi,
292 fprintf(fp, "src %s ", rt_addr_n2a(family, sizeof(*saddr),
295 fprintf(fp, "dst %s", rt_addr_n2a(family, sizeof(id->daddr),
443 void xfrm_selector_print(struct xfrm_selector *sel, __u16 family,
449 f = sel->family;
451 f = family;
571 __u16 family, FILE *fp, const char *prefix)
591 tmpl->reqid, tmpl->family, 0, fp, prefix, "tmpl ");
668 void xfrm_xfrma_print(struct rtattr *tb[], __u16 family,
733 rt_addr_n2a(family, sizeof(e->encap_oa)
    [all...]
ipaddress.c 41 int family; member in struct:__anon9111
246 (!filter.family || filter.family == AF_PACKET) &&
287 if (!filter.family || filter.family == AF_PACKET) {
494 if (filter.pfx.family) {
498 dst.family = ifa->ifa_family;
505 if (filter.family && filter.family != ifa->ifa_family)
539 fprintf(fp, " family %d ", ifa->ifa_family)
    [all...]
  /device/samsung/tuna/reflash-bootloader/
reflash-bootloader.c 46 const char *family; member in struct:omap_type
105 char family[10]; local
113 read_file("/sys/board_properties/soc/family", family, sizeof(family));
119 if ((strcmp(omap_type_list[i].family, family) == 0) &&
124 error("unknown omap type %s %s %s (0x%08lx)", family, type, msv, msv_val);
306 printf("Found %s %s %s\n", type->family, type->type, type->msv_type);
  /external/chromium/chrome/browser/resources/gpu_internals/
timeline_view.css 27 font-family: monospace;
  /external/iptables/extensions/
libxt_socket.c 59 .family = NFPROTO_IPV4,
67 .family = NFPROTO_UNSPEC,
libxt_ipvs.c 127 unsigned int family, bool numeric)
131 if (family == NFPROTO_IPV4) {
142 } else if (family == NFPROTO_IPV6) {
158 unsigned int family, bool numeric, const char *prefix)
177 ipvs_mt_dump_addr(&data->vaddr, &data->vmask, family, numeric);
255 .family = NFPROTO_IPV4,
269 .family = NFPROTO_IPV6,
  /external/iproute2/include/
utils.h 45 __u8 family; member in struct:__anon9110
73 extern int get_addr_1(inet_prefix *dst, const char *arg, int family);
74 extern int get_prefix_1(inet_prefix *dst, char *arg, int family);
75 extern int get_addr(inet_prefix *dst, const char *arg, int family);
76 extern int get_prefix(inet_prefix *dst, char *arg, int family);
  /external/webkit/Source/WebKit/chromium/src/gtk/
WebFontInfo.cpp 101 FcChar8* family; local
103 if (FcPatternGetString(current, FC_FAMILY, 0, &family) == FcResultMatch) {
104 const char* charFamily = reinterpret_cast<char*>(family);
115 void WebFontInfo::renderStyleForStrike(const char* family, int sizeAndStyle, WebFontRenderStyle* out)
125 fcvalue.u.s = reinterpret_cast<const FcChar8 *>(family);
  /external/freetype/src/cache/
ftcsbits.c 109 FTC_Family family = gnode->family; local
123 clazz = (FTC_SFamilyClass)family->clazz;
127 error = clazz->family_load_glyph( family, gindex, manager, &face );
216 FTC_Family family = gquery->family; local
223 total = clazz->family_get_count( family, cache->manager );
240 FTC_GNode_Init( FTC_GNODE( snode ), start, family ); local
339 result = FT_BOOL( gnode->family == gquery->family &
    [all...]
  /external/kernel-headers/original/linux/
netfilter.h 252 unsigned short family; member in struct:nf_afinfo
269 static inline const struct nf_afinfo *nf_get_afinfo(unsigned short family)
271 return rcu_dereference(nf_afinfo[family]);
276 u_int8_t protocol, unsigned short family)
282 afinfo = nf_get_afinfo(family);
292 u_int8_t protocol, unsigned short family)
298 afinfo = nf_get_afinfo(family);
313 nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
318 if (family == AF_INET) {
352 nf_nat_decode_session(struct sk_buff *skb, struct flowi *fl, u_int8_t family)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/chromium/
FontCacheChromiumWin.cpp 240 static HFONT createFontIndirectAndGetWinName(const String& family, LOGFONT* winfont, String* winName)
242 int len = min(static_cast<int>(family.length()), LF_FACESIZE - 1);
243 memcpy(winfont->lfFaceName, family.characters(), len * sizeof(WORD));
263 // This maps font family names to their repertoires of supported Unicode
264 // characters. Because it's family names rather than font faces we use
265 // as keys, there might be edge cases where one face of a font family
266 // has a different repertoire from another face of the same family.
270 const wchar_t* family, UChar32 character)
283 HashMap<const wchar_t*, icu::UnicodeSet*>::iterator it = fontCmapCache->find(family);
321 // We don't lowercase |family| because all of them are under our contro
438 const wchar_t* family = getFallbackFamily(characters, length, local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/pango/
FontPlatformDataPango.cpp 179 for (int family = 0; family < n_families; family++)
181 g_strdup(pango_font_family_get_name(families[family])),
182 g_object_ref(families[family]));
211 PangoFontFamily* family = reinterpret_cast<PangoFontFamily*>(g_hash_table_lookup(m_hashTable, pango_font_description_get_family(description))); local
213 return pango_font_family_is_monospace(family);
  /system/bluetooth/tools/
sock_shutdown_test.c 69 int family = -1; local
75 family = PF_UNIX;
80 family = PF_BLUETOOTH;
85 family = PF_BLUETOOTH;
90 family = PF_BLUETOOTH;
95 family = PF_INET;
102 ret = socket(family, typ, protocol);
  /external/android-clat/
netlink_msg.c 34 * returns the size of the address structure for the given family, or 0 on error
35 * family - AF_INET or AF_INET6
37 size_t inet_family_size(int family) {
38 if(family == AF_INET) {
40 } else if(family == AF_INET6) {
setroute.c 36 * family - AF_INET or AF_INET6
44 int if_route(const char *ifname, int family, const void *destination, int prefixlen, const void *gateway, int metric, int mtu, int change_type) {
52 addr_size = inet_family_size(family);
64 rt.rtm_family = family;
  /external/chromium/net/base/
net_util_win.cc 111 int family = address->Address.lpSockaddr->sa_family; local
112 if (family == AF_INET || family == AF_INET6) {
  /external/ipsec-tools/src/racoon/
kmpstat.c 208 get_sockaddr(family, name, port)
209 int family;
217 hint.ai_family = family;
  /external/webkit/Source/WebCore/platform/graphics/win/
WebLayer.cpp 122 FontFamily family; local
123 family.setFamily(metrics.lfSmCaptionFont.lfFaceName);
124 desc.setFamily(family);
  /external/webkit/Source/WebCore/rendering/
RenderTextControlMultiLine.cpp 79 float RenderTextControlMultiLine::getAvgCharWidth(AtomicString family)
84 if (family == AtomicString("Lucida Grande"))
87 return RenderTextControl::getAvgCharWidth(family);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPreferences.cpp 175 void WKPreferencesSetStandardFontFamily(WKPreferencesRef preferencesRef, WKStringRef family)
177 toImpl(preferencesRef)->setStandardFontFamily(toWTFString(family));
185 void WKPreferencesSetFixedFontFamily(WKPreferencesRef preferencesRef, WKStringRef family)
187 toImpl(preferencesRef)->setFixedFontFamily(toWTFString(family));
195 void WKPreferencesSetSerifFontFamily(WKPreferencesRef preferencesRef, WKStringRef family)
197 toImpl(preferencesRef)->setSerifFontFamily(toWTFString(family));
205 void WKPreferencesSetSansSerifFontFamily(WKPreferencesRef preferencesRef, WKStringRef family)
207 toImpl(preferencesRef)->setSansSerifFontFamily(toWTFString(family));
215 void WKPreferencesSetCursiveFontFamily(WKPreferencesRef preferencesRef, WKStringRef family)
217 toImpl(preferencesRef)->setCursiveFontFamily(toWTFString(family));
    [all...]

Completed in 624 milliseconds

1 2 3 45 6 7 8 91011>>