Searched defs:news (Results 1 - 7 of 7) sorted by relevance
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/widget/ |
H A D | TextLabelWidget.java | 60 protected void onMetricsChanged(SizeMetrics olds, SizeMetrics news) {
argument
|
/external/bison/ |
H A D | maint.mk | 143 # Select which lines of NEWS are searched for $(news-check-regexp). 145 # lines 1..10 of NEWS for $(news-check-regexp). 147 news-check-lines-spec ?= 1,10 148 news-check-regexp ?= '^\*.* $(VERSION_REGEXP) \($(today)\)' 1099 news-check: NEWS 1100 $(AM_V_GEN)if sed -n $(news-check-lines-spec)p $< \ 1101 | grep -E $(news-check-regexp) >/dev/null; then \ 1104 echo 'NEWS: $$(news-check-regexp) failed to match' 1>&2; \ 1327 --news=$(srcdir)/NEWS \ 1418 $(AM_V_at)$(MAKE) news [all...] |
/external/mksh/src/ |
H A D | eval.c | 1801 char *news; local 1811 news = alloc(l1 + l2 + l3 + 1, ATEMP); 1812 memcpy(news, start, l1); 1813 memcpy(news + l1, field_start, l2); 1814 memcpy(news + l1 + l2, brace_end, l3); 1815 news[l1 + l2 + l3] = '\0'; 1816 alt_expand(wp, news, news + l1, 1817 news + l1 + l2 + l3, fdo);
|
H A D | histrap.c | 928 unsigned char *base, *news; local 949 news = base + (size_t)histfsize; 950 if (*news == COMMAND) { 952 histload(hist_source, news, bytes);
|
H A D | lex.c | 1769 Lex_state *news = alloc2(STATE_BSIZE, sizeof(Lex_state), ATEMP); local 1771 news[0].ls_base = old_end; 1772 si->base = &news[0]; 1773 si->end = &news[STATE_BSIZE]; 1774 return (&news[1]);
|
H A D | var.c | 1421 struct tbl *prev, *curr, *news; local 1437 news = curr; 1439 news = NULL; 1440 if (!news) { 1443 news = alloc(offsetof(struct tbl, name[0]) + ++len, vp->areap); 1444 memcpy(news->name, vp->name, len); 1446 news->flag = (vp->flag & ~(ALLOC|DEFINED|ISSET|SPECIAL)) | AINDEX; 1447 news->type = vp->type; 1448 news->areap = vp->areap; 1449 news [all...] |
H A D | edit.c | 2382 char *news, *op; local 2384 strdupx(news, cp, ap); 2385 op = news; 2404 return (news); 3490 static void restore_edstate(struct edstate *old, struct edstate *news); 4817 struct edstate *news; local 4819 news = alloc(sizeof(struct edstate), AEDIT); 4820 news->cbuf = alloc(old->cbufsize, AEDIT); 4821 memcpy(news->cbuf, old->cbuf, old->linelen); 4822 news 4830 restore_edstate(struct edstate *news, struct edstate *old) argument [all...] |
Completed in 248 milliseconds