/external/dhcpcd/ |
if-linux.c | 88 struct nlmsghdr *nlm; local 103 for (nlm = (struct nlmsghdr *)buffer; 104 NLMSG_OK(nlm, (size_t)bytes); 105 nlm = NLMSG_NEXT(nlm, bytes)) 107 r = callback(nlm, ifname); 119 err_netlink(struct nlmsghdr *nlm, _unused const char *ifname) 124 if (nlm->nlmsg_type != NLMSG_ERROR) 126 l = nlm->nlmsg_len - sizeof(*nlm); 286 struct nlma *nlm; local 324 struct nlmr *nlm; local [all...] |
/frameworks/base/awt/org/apache/harmony/awt/gl/font/ |
AndroidFont.java | 73 this.nlm = new AndroidLineMetrics(this, null, " "); //$NON-NLS-1$ 74 this.ascent = nlm.getLogicalAscent(); 75 this.descent = nlm.getLogicalDescent(); 76 this.height = nlm.getHeight(); 77 this.leading = nlm.getLogicalLeading(); 78 this.maxAdvance = nlm.getLogicalMaxCharWidth(); 86 this.maxCharBounds = new Rectangle2D.Float(0, -nlm.getAscent(), nlm.getMaxCharWidth(), this.height); 101 nlm.getBaselineOffsets(); 103 LineMetricsImpl lm = (LineMetricsImpl)(this.nlm.clone()) [all...] |
CompositeFont.java | 59 LineMetricsImpl nlm = null; field in class:CompositeFont 154 return nlm.getLogicalAscent(); 166 LineMetricsImpl lm = (LineMetricsImpl)(this.nlm.clone()); 182 if (nlm == null){ 186 return this.nlm; 203 this.nlm = (LineMetricsImpl)lm; 266 this.nlm = new LineMetricsImpl(
|
FontPeerImpl.java | 93 LineMetricsImpl nlm; field in class:FontPeerImpl 422 return nlm;
|
/frameworks/base/awt/java/awt/ |
Font.java | 1160 LineMetrics nlm = getLineMetrics(chars, start, end, frc); local [all...] |