HomeSort by relevance Sort by last modified time
    Searched refs:family (Results 126 - 150 of 888) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/freetype/src/truetype/
ttsubpix.c 754 /* Does font name match rule family? */
819 const FT_String* family,
832 if ( family &&
833 ( is_member_of_family_class ( family, rule[i].family ) ) )
850 const FT_String* family,
863 if ( family &&
864 ( is_member_of_family_class ( family, rule[i].family ) ) )
881 const FT_String* family,
907 FT_String* family = face->root.family_name; local
    [all...]
  /external/iproute2/ip/
ipmaddr.c 34 int family; member in struct:__anon22066
105 m.addr.family = AF_PACKET;
136 m.addr.family = AF_INET;
180 m.addr.family = AF_INET6;
200 if (list->addr.family == AF_PACKET) {
207 switch(list->addr.family) {
215 fprintf(fp, "family %d ", list->addr.family);
219 format_host(list->addr.family,
251 if (!filter.family)
    [all...]
  /external/mtpd/
mtpd.h 43 void create_socket(int family, int type, char *server, char *port);
  /external/oprofile/daemon/
opd_ibs_trans.h 32 extern void trans_ibs_op_mask_reserved (unsigned int family, struct transient * trans);
  /external/oprofile/module/x86/
cpu_type.c 148 __u8 family = current_cpu_data.x86; local
157 if (family == 6) {
166 if (family == 15)
171 switch (family) {
  /hardware/broadcom/wlan/bcmdhd/dhdutil/
dhdu_nl80211.h 28 #include <netlink/genl/family.h>
  /external/chromium/net/base/
net_util_posix.cc 70 int family = ifa->ifa_addr->sa_family; local
71 if (family == AF_INET || family == AF_INET6) {
  /external/chromium_org/third_party/freetype/src/cache/
ftcsbits.h 43 #define FTC_SNODE_FAMILY( x ) FTC_GNODE( x )->family
46 (*FTC_SFamily_GetCountFunc)( FTC_Family family,
50 (*FTC_SFamily_LoadGlyphFunc)( FTC_Family family,
ftcbasic.c 62 FTC_FamilyRec family; member in struct:FTC_BasicFamilyRec_
72 FTC_BasicFamily family = (FTC_BasicFamily)ftcfamily; local
76 return FTC_BASIC_ATTR_COMPARE( &family->attrs, &query->attrs );
85 FTC_BasicFamily family = (FTC_BasicFamily)ftcfamily; local
90 FTC_Family_Init( FTC_FAMILY( family ), cache );
91 family->attrs = query->attrs;
100 FTC_BasicFamily family = (FTC_BasicFamily)ftcfamily; local
106 error = FTC_Manager_LookupFace( manager, family->attrs.scaler.face_id,
131 FTC_BasicFamily family = (FTC_BasicFamily)ftcfamily; local
136 error = FTC_Manager_LookupSize( manager, &family->attrs.scaler, &size )
158 FTC_BasicFamily family = (FTC_BasicFamily)ftcfamily; local
208 FTC_BasicFamily family = (FTC_BasicFamily)gnode->family; local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
macasyncsocket.h 24 MacAsyncSocket(MacBaseSocketServer* ss, int family);
59 MacAsyncSocket(MacBaseSocketServer* ss, int family, int native_socket);
63 void Initialize(int family);
sslsocketfactory.h 75 virtual Socket* CreateSocket(int family, int type);
78 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
82 AsyncSocket* CreateProxySocket(const ProxyInfo& proxy, int family, int type);
natsocketfactory.h 48 virtual AsyncSocket* CreateInternalSocket(int family, int type,
61 virtual Socket* CreateSocket(int family, int type);
63 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
66 virtual AsyncSocket* CreateInternalSocket(int family, int type,
149 virtual Socket* CreateSocket(int family, int type);
152 virtual AsyncSocket* CreateAsyncSocket(int family, int type);
166 virtual AsyncSocket* CreateInternalSocket(int family, int type,
  /external/freetype/src/cache/
ftcsbits.h 43 #define FTC_SNODE_FAMILY( x ) FTC_GNODE( x )->family
46 (*FTC_SFamily_GetCountFunc)( FTC_Family family,
50 (*FTC_SFamily_LoadGlyphFunc)( FTC_Family family,
  /external/icu4c/common/
uinvchar.h 63 # error Unknown charset family!
83 # error Unknown charset family!
103 # error Unknown charset family!
  /external/libyuv/files/unit_test/
cpu_test.cc 69 // CPU Family and Model
72 // 11:8 - Family
75 // 27:20 - Extended Family
77 int family = ((cpu_info[0] >> 8) & 0x0f) | ((cpu_info[0] >> 16) & 0xff0); local
79 printf("Cpu Family %d (0x%x), Model %d (0x%x)\n", family, family,
  /frameworks/base/graphics/java/android/graphics/
Typeface.java 77 * Create a typeface object given a family name, and option style information.
82 * @param familyName May be null. The name of the font family.
94 * style from the same family of an existing typeface object. If family is
95 * null, this selects from the default font's family.
97 * @param family May be null. The name of the existing type face.
102 public static Typeface create(Typeface family, int style) {
104 if (family != null) {
106 if (family.mStyle == style) {
107 return family;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 83 def arbitrary_address(family):
85 Return an arbitrary free address for the given family
87 if family == 'AF_INET':
89 elif family == 'AF_UNIX':
91 elif family == 'AF_PIPE':
95 raise ValueError('unrecognized family')
124 def __init__(self, address=None, family=None, backlog=1, authkey=None):
125 family = family or (address and address_type(address)) \
127 address = address or arbitrary_address(family)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
connection.py 83 def arbitrary_address(family):
85 Return an arbitrary free address for the given family
87 if family == 'AF_INET':
89 elif family == 'AF_UNIX':
91 elif family == 'AF_PIPE':
95 raise ValueError('unrecognized family')
124 def __init__(self, address=None, family=None, backlog=1, authkey=None):
125 family = family or (address and address_type(address)) \
127 address = address or arbitrary_address(family)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/linux/
WebFontInfo.cpp 49 void WebFontInfo::familyForChar(WebUChar32 c, const char* preferredLocale, WebFontFamily* family)
80 family->name = WebCString();
81 family->isBold = false;
82 family->isItalic = false;
106 family->name = WebCString(charFamily, strlen(charFamily));
110 family->isBold = weight >= FC_WEIGHT_BOLD;
112 family->isBold = false;
115 family->isItalic = slant != FC_SLANT_ROMAN;
117 family->isItalic = false;
125 void WebFontInfo::renderStyleForStrike(const char* family, int sizeAndStyle, WebFontRenderStyle* out
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/win/
FontFallbackWin.cpp 64 // A simple mapping from UScriptCode to family name. This is a sparse array,
72 const UChar* family; member in struct:WebCore::__anon13543::FontMap
152 scriptFontMap[fontMap[i].script] = fontMap[i].family;
240 // - Get the default font for each script/generic family from the
272 // accept another parameter indicating the previous family
293 const UChar* family = getFontFamilyForScript(script, generic);
295 // If the font family for script is not found or the character is
298 if (!family || character > 0xFFFF) {
302 family = L"code2001";
311 family = L"pmingliu-extb"
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_truetype_font_linux.cc 46 // If no face is provided, convert family to the platform defaults. These
48 if (desc_.family.empty()) {
51 desc_.family = "serif";
54 desc_.family = "sans-serif";
57 desc_.family = "cursive";
60 desc_.family = "fantasy";
63 desc_.family = "monospace";
69 desc_.family.c_str(),
  /external/chromium_org/ppapi/cpp/dev/
truetype_font_dev.h 32 /// structure. The 'family' PP_Var field in the structure will be managed by
49 Var family() const { function in class:pp::TrueTypeFontDesc_Dev
52 void set_family(const Var& family) {
53 family_ = family;
56 desc_.family = family_.pp_var();
62 void set_generic_family(PP_TrueTypeFontFamily_Dev family) {
63 desc_.generic_family = family;
117 /// Gets an array of TrueType font family names available on the host.
118 /// These names can be used to create a font from a specific family.
120 /// @param[in] instance A <code>InstanceHandle</code> requesting the family
    [all...]
  /external/dhcpcd/
ifaddrs.c 33 struct ifaddrs *get_interface(const char *name, sa_family_t family)
46 if ((family == AF_INET) && (addr == 0))
62 if (family == AF_INET) {
66 saddr->sin_family = family;
74 smask->sin_family = family;
78 } else if (family == AF_PACKET) {
83 hwaddr->sll_family = family;
  /external/iproute2/lib/
utils.c 70 if (!get_addr_1(&addr, arg, AF_INET) && addr.family == AF_INET) {
279 int get_addr_1(inet_prefix *addr, const char *name, int family)
286 if (family == AF_DECnet)
288 addr->family = family;
289 addr->bytelen = (family == AF_INET6 ? 16 : 4);
295 addr->family = AF_INET6;
296 if (family != AF_UNSPEC && family != AF_INET6)
306 if (family == AF_DECnet)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/testing/
InternalSettings.cpp 219 void InternalSettings::setStandardFontFamily(const String& family, const String& script, ExceptionState& exceptionState)
225 settings()->genericFontFamilySettings().setStandard(family, code);
229 void InternalSettings::setSerifFontFamily(const String& family, const String& script, ExceptionState& exceptionState)
235 settings()->genericFontFamilySettings().setSerif(family, code);
239 void InternalSettings::setSansSerifFontFamily(const String& family, const String& script, ExceptionState& exceptionState)
245 settings()->genericFontFamilySettings().setSansSerif(family, code);
249 void InternalSettings::setFixedFontFamily(const String& family, const String& script, ExceptionState& exceptionState)
255 settings()->genericFontFamilySettings().setFixed(family, code);
259 void InternalSettings::setCursiveFontFamily(const String& family, const String& script, ExceptionState& exceptionState)
265 settings()->genericFontFamilySettings().setCursive(family, code)
    [all...]

Completed in 743 milliseconds

1 2 3 4 56 7 8 91011>>