HomeSort by relevance Sort by last modified time
    Searched refs:FAMILY (Results 1 - 25 of 44) sorted by null

1 2

  /cts/tests/tests/text/src/android/text/style/cts/
TypefaceSpanTest.java 36 private static final String FAMILY = "monospace";
40 TypefaceSpan t = new TypefaceSpan(FAMILY);
54 TypefaceSpan typefaceSpan = new TypefaceSpan(FAMILY);
55 assertEquals(FAMILY, typefaceSpan.getFamily());
60 TypefaceSpan typefaceSpan = new TypefaceSpan(FAMILY);
74 TypefaceSpan typefaceSpan = new TypefaceSpan(FAMILY);
81 TypefaceSpan typefaceSpan = new TypefaceSpan(FAMILY);
95 TypefaceSpan typefaceSpan = new TypefaceSpan(FAMILY);
102 TypefaceSpan typefaceSpan = new TypefaceSpan(FAMILY);
108 TypefaceSpan typefaceSpan = new TypefaceSpan(FAMILY);
    [all...]
  /frameworks/base/apct-tests/perftests/core/src/android/widget/
EditTextCursorMovementPerfTest.java 51 private static final String FAMILY =
61 { "ZwjSequence", FAMILY + FAMILY + FAMILY, 11 },
EditTextBackspacePerfTest.java 51 private static final String FAMILY =
66 { "ZwjSequence", FAMILY + FAMILY + FAMILY, 11 },
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
Expression.py 39 ERR_IN_OPERAND = 'Macro after IN operator can only be: $(FAMILY), $(ARCH), $(TOOL_CHAIN_TAG) and $(TARGET).'
113 SupportedInMacroList = ['TARGET', 'TOOL_CHAIN_TAG', 'ARCH', 'FAMILY']
  /libcore/ojluni/src/main/java/java/awt/font/
TextAttribute.java 146 * family to be used.
157 * it specifies the face name and not just the family. Thus
164 public static final TextAttribute FAMILY =
165 new TextAttribute("family");
473 * <code>FAMILY</code>, <code>WEIGHT</code>, <code>WIDTH</code>,
    [all...]
  /kernel/tests/net/test/
netlink.py 136 self.sock = socket.socket(socket.AF_NETLINK, socket.SOCK_RAW, self.FAMILY)
xfrm.py 121 "family prefixlen_d prefixlen_s proto ifindex user")
145 "id family saddr reqid mode share optional aalgos ealgos calgos",
153 "sel id saddr lft curlft stats seq reqid family mode replay_window flags",
160 "XfrmUsersaInfo", "=16sIHBx", "daddr spi family proto")
190 family = AF_INET6 if ":" in addr else AF_INET
191 return inet_pton(family, addr)
205 FAMILY = NETLINK_XFRM
251 def AddSaInfo(self, selector, xfrm_id, saddr, lifetimes, reqid, family, mode,
258 reqid, family, mode, replay_window, flags))
268 family = AF_INET6 if ":" in dst else AF_INE
    [all...]
sock_diag.py 83 "InetDiagReqV2", "=BBBxIS", "family protocol ext states id",
87 "family state timer retrans id expires rqueue wqueue uid inode",
93 "family prefix_len port")
115 FAMILY = NETLINK_SOCK_DIAG
120 if msg.family == AF_INET or msg.family == AF_INET6:
153 if addr.family == AF_INET:
155 elif addr.family == AF_INET6:
230 family = AF_INET6 if ":" in addr else AF_INET
231 addr = inet_pton(family, addr
    [all...]
iproute.py 97 "IfinfoMsg", "=BBHiII", "family pad type index flags change")
100 "family dst_len src_len tos table protocol scope type flags")
126 "family prefixlen flags scope index")
146 "family ifindex state flags type")
201 FAMILY = NETLINK_ROUTE
203 def _NlAttrIPAddress(self, nla_type, family, address):
204 return self._NlAttr(nla_type, socket.inet_pton(family, address))
228 family: The address family. Used to convert IP addresses into strings.
271 data = socket.inet_ntop(msg.family, nla_data
    [all...]
  /external/libnl/lib/route/
neigh.c 266 diff |= NEIGH_DIFF(FAMILY, a->n_family != b->n_family);
294 __ADD(NEIGH_ATTR_FAMILY, family)
403 * Get the bridge index for AF_BRIDGE family entries
430 int family = c->c_iarg1; local
432 return nl_rtgen_request(h, RTM_GETNEIGH, family, NLM_F_DUMP);
886 void rtnl_neigh_set_family(struct rtnl_neigh *neigh, int family)
888 neigh->n_family = family;
rule.c 90 int err = 1, family; local
105 rule->r_family = family = frh->family;
155 if (!(rule->r_src = nl_addr_alloc_attr(tb[FRA_SRC], family)))
163 if (!(rule->r_dst = nl_addr_alloc_attr(tb[FRA_DST], family)))
257 diff |= RULE_DIFF(FAMILY, a->r_family != b->r_family);
277 __ADD(RULE_ATTR_FAMILY, family)
323 * @arg family Address family or AF_UNSPEC.
331 int rtnl_rule_alloc_cache(struct nl_sock *sock, int family,
    [all...]
addr.c 31 * // local address will automatically set the address family and the
52 * // functions, the address family will be verified if one of the other
73 * // The only mandatory parameter besides the address family is the interface
75 * // result in all addresses of the specified address family interface tuple
79 * // Specyfing the address family manually is only required if neither the
202 int err, family; local
217 addr->a_family = family = ifa->ifa_family;
245 addr->a_local = nl_addr_alloc_attr(tb[IFA_LOCAL], family);
255 a = nl_addr_alloc_attr(tb[IFA_ADDRESS], family);
279 addr->a_bcast = nl_addr_alloc_attr(tb[IFA_BROADCAST], family);
    [all...]
neightbl.c 66 diff |= NT_DIFF(FAMILY, a->nt_family != b->nt_family);
601 void rtnl_neightbl_set_family(struct rtnl_neightbl *ntbl, int family)
603 ntbl->nt_family = family;
route_obj.c 25 * family AF_UNSPEC
356 diff |= ROUTE_DIFF(FAMILY, a->rt_family != b->rt_family);
547 __ADD(ROUTE_ATTR_FAMILY, family)
655 int rtnl_route_set_family(struct rtnl_route *route, uint8_t family)
657 if (family != AF_INET && family != AF_INET6 && family != AF_DECnet)
660 route->rt_family = family;
1014 int err, family; local
1029 route->rt_family = family = rtm->rtm_family
    [all...]
link.c 70 int family)
75 af_ops = rtnl_link_af_ops_lookup(family);
485 int err, family; local
502 link->l_family = family = ifi->ifi_family;
511 if ((af_ops = af_lookup_and_alloc(link, family))) {
557 link->l_family = family = af;
643 int family = cache->c_iarg1; local
645 return nl_rtgen_request(sk, RTM_GETLINK, family, NLM_F_DUMP);
915 diff |= LINK_DIFF(FAMILY, a->l_family != b->l_family);
966 __ADD(LINK_ATTR_FAMILY, family)
    [all...]
  /external/libnl/lib/netfilter/
ct_obj.c 223 nl_dump_line(p, "family %s ",
314 diff |= CT_DIFF_VAL(FAMILY, ct_family);
354 __ADD(CT_ATTR_FAMILY, family)
414 void nfnl_ct_set_family(struct nfnl_ct *ct, uint8_t family)
416 ct->ct_family = family;
exp_obj.c 245 nl_dump_line(p, "family %s ",
323 diff |= EXP_DIFF_VAL(FAMILY, exp_family);
370 __ADD(EXP_ATTR_FAMILY, family)
433 void nfnl_exp_set_family(struct nfnl_exp *exp, uint8_t family)
435 exp->exp_family = family;
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.artifact.repository_1.1.200.v20130515-2028.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/26.0.0-alpha4/
sdk-common-26.0.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/26.0.0-alpha5/
sdk-common-26.0.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/26.0.0-alpha6/
sdk-common-26.0.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/26.0.0-alpha7/
sdk-common-26.0.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/26.0.0-alpha9/
sdk-common-26.0.0-alpha9.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/26.0.0-beta1/
sdk-common-26.0.0-beta1.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdk-common/26.0.0-beta2/
sdk-common-26.0.0-beta2.jar 

Completed in 2075 milliseconds

1 2