/external/ImageMagick/config/ |
D | type-apple.xml.in | 8 <!ATTLIST type family CDATA #IMPLIED> 24 family="Al Bayan" 31 family="Al Bayan" 38 family="Andale Mono" 45 family="Apple Chancery" 52 family="Apple LiGothic" 59 family="Apple LiSung" 66 family="AppleMyungjo" 73 family="Arial Black" 80 family="Arial" [all …]
|
D | type-windows.xml.in | 8 <!ATTLIST type family CDATA #IMPLIED> 20 …<type name="Arial" fullname="Arial" family="Arial" weight="400" style="normal" stretch="normal" gl… 21 …<type name="Arial-Black" fullname="Arial Black" family="Arial" weight="900" style="normal" stretch… 22 …<type name="Arial-Bold" fullname="Arial Bold" family="Arial" weight="700" style="normal" stretch="… 23 …<type name="Arial-Bold-Italic" fullname="Arial Bold Italic" family="Arial" weight="700" style="ita… 24 …<type name="Arial-Italic" fullname="Arial Italic" family="Arial" weight="400" style="italic" stret… 25 …<type name="Arial-Narrow" fullname="Arial Narrow" family="Arial Narrow" weight="400" style="normal… 26 …<type name="Arial-Narrow-Bold" fullname="Arial Narrow Bold" family="Arial Narrow" weight="700" sty… 27 …<type name="Arial-Narrow-Bold-Italic" fullname="Arial Narrow Bold Italic" family="Arial Narrow" we… 28 …<type name="Arial-Narrow-Italic" fullname="Arial Narrow Italic" family="Arial Narrow" weight="400"… [all …]
|
D | type-dejavu.xml.in | 8 <!ATTLIST type fullname="" family CDATA #IMPLIED> 20 …<type name="DejaVu-LGC-Sans-Bold" fullname="DejaVu LGC Sans Bold" family="DejaVuGC Sans" style="No… 21 …<type name="DejaVu-LGC-Sans-Bold-Oblique" fullname="DejaVu LGC Sans Bold Oblique" family="DejaVuGC… 22 …<type name="DejaVu-LGC-Sans-Book" fullname="DejaVu LGC Sans Book" family="DejaVuGC Sans" style="No… 23 …<type name="DejaVu-LGC-Sans-Condensed" fullname="DejaVu LGC Sans Condensed" family="DejaVuGC Sans"… 24 …<type name="DejaVu-LGC-Sans-Condensed-Bold" fullname="DejaVu LGC Sans Condensed Bold" family="Deja… 25 …ondensed-Bold-Oblique" fullname="DejaVu LGC Sans Condensed Bold Oblique" family="DejaVuGC Sans" st… 26 …LGC-Sans-Condensed-Oblique" fullname="DejaVu LGC Sans Condensed Oblique" family="DejaVuGC Sans" st… 27 …<type name="DejaVu-LGC-Sans-ExtraLight" fullname="DejaVu LGC Sans ExtraLight" family="DejaVuGC San… 28 …<type name="DejaVu-LGC-Sans-Mono-Bold" fullname="DejaVu LGC Sans Mono Bold" family="DejaVuGC Sans … [all …]
|
D | type-ghostscript.xml.in | 8 <!ATTLIST type family CDATA #IMPLIED> 20 …<type name="AvantGarde-Book" fullname="AvantGarde Book" family="AvantGarde" foundry="URW" weight="… 21 …<type name="AvantGarde-BookOblique" fullname="AvantGarde Book Oblique" family="AvantGarde" foundry… 22 …<type name="AvantGarde-Demi" fullname="AvantGarde DemiBold" family="AvantGarde" foundry="URW" weig… 23 …<type name="AvantGarde-DemiOblique" fullname="AvantGarde DemiOblique" family="AvantGarde" foundry=… 24 …<type name="Bookman-Demi" fullname="Bookman DemiBold" family="Bookman" foundry="URW" weight="600" … 25 …<type name="Bookman-DemiItalic" fullname="Bookman DemiBold Italic" family="Bookman" foundry="URW" … 26 …<type name="Bookman-Light" fullname="Bookman Light" family="Bookman" foundry="URW" weight="300" st… 27 …<type name="Bookman-LightItalic" fullname="Bookman Light Italic" family="Bookman" foundry="URW" we… 28 …<type name="Courier" fullname="Courier Regular" family="Courier" foundry="URW" weight="400" style=… [all …]
|
/external/skia/resources/android_fonts/v22/ |
D | fonts.xml | 4 <family name="sans-serif"> 19 </family> 28 <family name="var"> 38 </family> 40 <family name="sans-serif-condensed"> 47 </family> 51 <family name="serif"> 56 </family> 66 <family name="monospace"> 68 </family> [all …]
|
/external/libnl/lib/genl/ |
D | family.c | 2 * lib/genl/family.c Generic Netlink Family 14 * @defgroup genl_family Generic Netlink Family Object 16 * Object representing a kernel side registered Generic Netlink family 24 #include <netlink/genl/family.h> 39 struct genl_family *family = (struct genl_family *) c; in family_constructor() local 41 nl_init_list_head(&family->gf_ops); in family_constructor() 42 nl_init_list_head(&family->gf_mc_grps); in family_constructor() 47 struct genl_family *family = (struct genl_family *) c; in family_free_data() local 51 if (family == NULL) in family_free_data() 54 nl_list_for_each_entry_safe(ops, tmp, &family->gf_ops, o_list) { in family_free_data() [all …]
|
D | ctrl.c | 16 * Resolves Generic Netlink family names to numeric identifiers. 19 * family names to their numeric identifiers. This module provides functions 27 #include <netlink/genl/family.h> 64 static int parse_mcast_grps(struct genl_family *family, struct nlattr *grp_attr) in parse_mcast_grps() argument 94 err = genl_family_add_grp(family, id, name); in parse_mcast_grps() 108 struct genl_family *family; in ctrl_msg_parser() local 112 family = genl_family_alloc(); in ctrl_msg_parser() 113 if (family == NULL) { in ctrl_msg_parser() 128 family->ce_msgtype = info->nlh->nlmsg_type; in ctrl_msg_parser() 129 genl_family_set_id(family, in ctrl_msg_parser() [all …]
|
D | mngt.c | 14 * @defgroup genl_mngt Family and Command Registration 25 #include <netlink/genl/family.h> 94 static struct genl_ops *lookup_family(int family) in lookup_family() argument 99 if (ops->o_id == family) in lookup_family() 118 char *genl_op2name(int family, int op, char *buf, size_t len) in genl_op2name() argument 123 if ((ops = lookup_family(family))) { in genl_op2name() 147 * Register Generic Netlink family and associated commands 148 * @arg ops Generic Netlink family definition 150 * Registers the specified Generic Netlink family definition together with 156 * @note Consider using genl_register() if the family is used to implement a [all …]
|
/external/skia/resources/android_fonts/v17/ |
D | fallback_fonts.xml | 7 Each entry consists of a family tag and a list of files (file names) which support that 8 family. The fonts for each family are listed in the order of the styles that they 32 <family> 36 </family> 37 <family> 41 </family> 42 <family> 46 </family> 47 <family> 52 </family> [all …]
|
D | fallback_fonts-ja.xml | 7 Each entry consists of a family tag and a list of files (file names) which support that 8 family. The fonts for each family are listed in the order of the styles that they 35 <family> 39 </family> 40 <family> 44 </family> 45 <family> 50 </family> 51 <family> 55 </family> [all …]
|
D | system_fonts.xml | 6 Each entry consists of a family, various names that are supported by that family, and 11 The first family is also the default font, which handles font request that have not specified 21 <family> 35 </family> 37 <family> 45 </family> 47 <family> 55 </family> 57 <family> 67 </family> [all …]
|
/external/ImageMagick/www/source/ |
D | type-windows.xml | 8 <!ATTLIST type family CDATA #IMPLIED> 20 …<type name="Arial" fullname="Arial" family="Arial" weight="400" style="normal" stretch="normal" gl… 21 …<type name="Arial-Black" fullname="Arial Black" family="Arial" weight="900" style="normal" stretch… 22 …<type name="Arial-Bold" fullname="Arial Bold" family="Arial" weight="700" style="normal" stretch="… 23 …<type name="Arial-Bold-Italic" fullname="Arial Bold Italic" family="Arial" weight="700" style="ita… 24 …<type name="Arial-Italic" fullname="Arial Italic" family="Arial" weight="400" style="italic" stret… 25 …<type name="Arial-Narrow" fullname="Arial Narrow" family="Arial Narrow" weight="400" style="normal… 26 …<type name="Arial-Narrow-Bold" fullname="Arial Narrow Bold" family="Arial Narrow" weight="700" sty… 27 …<type name="Arial-Narrow-Bold-Italic" fullname="Arial Narrow Bold Italic" family="Arial Narrow" we… 28 …<type name="Arial-Narrow-Italic" fullname="Arial Narrow Italic" family="Arial Narrow" weight="400"… [all …]
|
D | type-ghostscript.xml | 8 <!ATTLIST type family CDATA #IMPLIED> 20 …<type name="AvantGarde-Book" fullname="AvantGarde Book" family="AvantGarde" foundry="URW" weight="… 21 …<type name="AvantGarde-BookOblique" fullname="AvantGarde Book Oblique" family="AvantGarde" foundry… 22 …<type name="AvantGarde-Demi" fullname="AvantGarde DemiBold" family="AvantGarde" foundry="URW" weig… 23 …<type name="AvantGarde-DemiOblique" fullname="AvantGarde DemiOblique" family="AvantGarde" foundry=… 24 …<type name="Bookman-Demi" fullname="Bookman DemiBold" family="Bookman" foundry="URW" weight="600" … 25 …<type name="Bookman-DemiItalic" fullname="Bookman DemiBold Italic" family="Bookman" foundry="URW" … 26 …<type name="Bookman-Light" fullname="Bookman Light" family="Bookman" foundry="URW" weight="300" st… 27 …<type name="Bookman-LightItalic" fullname="Bookman Light Italic" family="Bookman" foundry="URW" we… 28 …<type name="Courier" fullname="Courier Regular" family="Courier" foundry="URW" weight="400" style=… [all …]
|
/external/testng/doc/ |
D | book-toc.html | 11 …/font></td></tr></table><font size="3" face="Times"><span style="font-size:16px;font-family:Times"> 14 <font size="6" face="Times"><span style="font-size:48px;font-family:Times"> 18 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 29 <font size="8" face="Times"><span style="font-size:16px;font-family:Times"> 34 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 39 <font size="8" face="Times"><span style="font-size:11px;font-family:Times"> 42 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 45 <font size="8" face="Times"><span style="font-size:11px;font-family:Times"> 48 <font size="8" face="Times"><span style="font-size:12px;font-family:Times"> 51 <font size="8" face="Times"><span style="font-size:11px;font-family:Times"> [all …]
|
/external/libnl/lib/route/link/ |
D | api.c | 109 * @return -NLE_EXIST Operations for address family already registered. 178 * @name Link Address Family Modules 185 * Return operations of a specific link address family 186 * @arg family Address family 192 struct rtnl_link_af_ops *rtnl_link_af_ops_lookup(const unsigned int family) in rtnl_link_af_ops_lookup() argument 194 if (family == AF_UNSPEC || family >= AF_MAX) in rtnl_link_af_ops_lookup() 198 if (af_ops[family]) in rtnl_link_af_ops_lookup() 199 af_ops[family]->ao_refcnt++; in rtnl_link_af_ops_lookup() 202 return af_ops[family]; in rtnl_link_af_ops_lookup() 207 * @arg ops Address family operations. [all …]
|
/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/ |
D | Os.java | 41 * OS family to look for 43 private String family; field in Os 57 * OS family that can be tested for. {@value} 61 * OS family that can be tested for. {@value} 65 * OS family that can be tested for. {@value} 69 * OS family that can be tested for. {@value} 73 * OS family that can be tested for. {@value} 77 * OS family that can be tested for. {@value} 81 * OS family that can be tested for. {@value} 85 * OS family that can be tested for. {@value} [all …]
|
/external/swiftshader/third_party/LLVM/docs/CommandGuide/ |
D | manpage.css | 5 body { font-family: Arial,Helvetica; } 14 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 18 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 22 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 26 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 30 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 34 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 38 font-family: Arial,Helvetica; font-weight: normal; text-decoration: none; 42 .slink2 { font-family: Arial,Helvetica; text-decoration: none; color: #336699; } 45 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; [all …]
|
/external/swiftshader/third_party/LLVM/docs/CommandGuide/html/ |
D | manpage.css | 5 body { font-family: Arial,Helvetica; } 14 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 18 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 22 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 26 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 30 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 34 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; 38 font-family: Arial,Helvetica; font-weight: normal; text-decoration: none; 42 .slink2 { font-family: Arial,Helvetica; text-decoration: none; color: #336699; } 45 font-family: Arial,Helvetica; font-weight: bold; text-decoration: none; [all …]
|
/external/skia/resources/android_fonts/pre_v17/ |
D | fallback_fonts.xml | 7 Each entry consists of a family tag and a list of files (file names) which support that 8 family. The fonts for each family are listed in the order of the styles that they 26 <family> 30 </family> 31 <family> 35 </family> 36 <family> 41 </family> 42 <family> 46 </family> [all …]
|
/external/freetype/src/cache/ |
D | ftcglyph.c | 33 FTC_Family family ) in FTC_GNode_Init() argument 35 gnode->family = family; in FTC_GNode_Init() 37 family->num_nodes++; in FTC_GNode_Init() 45 FTC_Family family = gnode->family; in FTC_GNode_UnselectFamily() local 48 gnode->family = NULL; in FTC_GNode_UnselectFamily() 49 if ( family && --family->num_nodes == 0 ) in FTC_GNode_UnselectFamily() 50 FTC_FAMILY_FREE( family, cache ); in FTC_GNode_UnselectFamily() 78 return FT_BOOL( gnode->family == gquery->family && in ftc_gnode_compare() 106 FTC_Family_Init( FTC_Family family, in FTC_Family_Init() argument 112 family->clazz = clazz->family_class; in FTC_Family_Init() [all …]
|
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/ |
D | inet.py | 37 def inet_pton(family, text): argument 40 @param family: the address family 41 @type family: int 44 @raises NotImplementedError: the address family specified is not 49 if family == AF_INET: 51 elif family == AF_INET6: 56 def inet_ntop(family, address): argument 59 @param family: the address family 60 @type family: int 63 @raises NotImplementedError: the address family specified is not [all …]
|
/external/libcxx/utils/google-benchmark/src/ |
D | benchmark_register.cc | 52 // The size of a benchmark family determines is the number of inputs to repeat 64 // benchmark identifies a family of related benchmarks to run. 69 // Registers a benchmark family and returns the index assigned to it. 70 size_t AddBenchmark(std::unique_ptr<Benchmark> family); 90 size_t BenchmarkFamilies::AddBenchmark(std::unique_ptr<Benchmark> family) { in AddBenchmark() argument 93 families_.push_back(std::move(family)); in AddBenchmark() 114 for (std::unique_ptr<Benchmark>& family : families_) { in FindBenchmarks() 115 // Family was deleted or benchmark doesn't match in FindBenchmarks() 116 if (!family) continue; in FindBenchmarks() 118 if (family->ArgsCnt() == -1) { in FindBenchmarks() [all …]
|
/external/google-benchmark/src/ |
D | benchmark_register.cc | 52 // The size of a benchmark family determines is the number of inputs to repeat 64 // benchmark identifies a family of related benchmarks to run. 69 // Registers a benchmark family and returns the index assigned to it. 70 size_t AddBenchmark(std::unique_ptr<Benchmark> family); 90 size_t BenchmarkFamilies::AddBenchmark(std::unique_ptr<Benchmark> family) { in AddBenchmark() argument 93 families_.push_back(std::move(family)); in AddBenchmark() 114 for (std::unique_ptr<Benchmark>& family : families_) { in FindBenchmarks() 115 // Family was deleted or benchmark doesn't match in FindBenchmarks() 116 if (!family) continue; in FindBenchmarks() 118 if (family->ArgsCnt() == -1) { in FindBenchmarks() [all …]
|
/external/autotest/client/site_tests/network_3GDisconnectFailure/ |
D | network_3GDisconnectFailure.py | 22 def _GetModemSuperClass(family): argument 24 Obtains the correct Modem base class to use for the given family. 26 @param family: The modem family. Should be one of |3GPP|/|CDMA|. 28 @raises error.TestError, if |family| is not one of '3GPP' or 'CDMA'. 31 if family == '3GPP': 33 elif family == 'CDMA': 36 raise error.TestError('Invalid pseudomodem family: %s', family) 39 def GetModemDisconnectWhileStateIsDisconnecting(family): argument 43 @param family: The family of the modem returned. 44 @returns: A modem of the given family that fails disconnect. [all …]
|
/external/webrtc/webrtc/base/ |
D | virtualsocket_unittest.cc | 148 EXPECT_EQ(pre_ip.family(), post_ip.family()); in CheckPortIncrementalization() 149 if (post_ip.family() == AF_INET) { in CheckPortIncrementalization() 153 } else if (post_ip.family() == AF_INET6) { in CheckPortIncrementalization() 170 ss_->CreateAsyncSocket(default_route.family(), SOCK_DGRAM); in TestDefaultRoute() 171 socket->Bind(EmptySocketAddressWithFamily(default_route.family())); in TestDefaultRoute() 178 ss_->CreateAsyncSocket(default_route.family(), SOCK_DGRAM); in TestDefaultRoute() 198 AsyncSocket* socket = ss_->CreateAsyncSocket(initial_addr.family(), in BasicTest() 203 EXPECT_EQ(server_addr.family(), initial_addr.family()); in BasicTest() 207 ss_->CreateAsyncSocket(initial_addr.family(), SOCK_DGRAM); in BasicTest() 219 SocketAddress empty = EmptySocketAddressWithFamily(initial_addr.family()); in BasicTest() [all …]
|