Searched defs:news (Results 1 - 8 of 8) sorted by relevance

/external/bison/
H A Dmaint.mk143 # 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/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
H A Dbg.js23 "http://news.google.com/": "news.mp3",
/external/chromium_org/third_party/skia/third_party/lua/src/
H A Dlstrlib.c681 const char *news = lua_tolstring(ms->L, 3, &l); local
683 if (news[i] != L_ESC)
684 luaL_addchar(b, news[i]);
687 if (!isdigit(uchar(news[i]))) {
688 if (news[i] != L_ESC)
691 luaL_addchar(b, news[i]);
693 else if (news[i] == '0')
696 push_onecapture(ms, news[i] - '1', s, e);
/external/mksh/src/
H A Deval.c1801 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 Dhistrap.c886 unsigned char *base, *news; local
907 news = base + (size_t)histfsize;
908 if (*news == COMMAND) {
910 histload(hist_source, news, bytes);
H A Dlex.c1774 Lex_state *news = alloc2(STATE_BSIZE, sizeof(Lex_state), ATEMP); local
1776 news[0].ls_base = old_end;
1777 si->base = &news[0];
1778 si->end = &news[STATE_BSIZE];
1779 return (&news[1]);
H A Dvar.c1389 struct tbl *prev, *curr, *news; local
1405 news = curr;
1407 news = NULL;
1408 if (!news) {
1411 news = alloc(offsetof(struct tbl, name[0]) + ++len, vp->areap);
1412 memcpy(news->name, vp->name, len);
1414 news->flag = (vp->flag & ~(ALLOC|DEFINED|ISSET|SPECIAL)) | AINDEX;
1415 news->type = vp->type;
1416 news->areap = vp->areap;
1417 news
[all...]
H A Dedit.c2363 char *news, *op; local
2365 strdupx(news, cp, ap);
2366 op = news;
2385 return (news);
3456 static void restore_edstate(struct edstate *old, struct edstate *news);
4768 struct edstate *news; local
4770 news = alloc(sizeof(struct edstate), AEDIT);
4771 news->cbuf = alloc(old->cbufsize, AEDIT);
4772 memcpy(news->cbuf, old->cbuf, old->linelen);
4773 news
4781 restore_edstate(struct edstate *news, struct edstate *old) argument
[all...]

Completed in 370 milliseconds