Searched refs:firstline (Results 1 - 4 of 4) sorted by relevance

/barrelfish-2018-10-04/lib/lua/src/
H A Dlua.c235 static const char *get_prompt (lua_State *L, int firstline) { argument
237 lua_getglobal(L, firstline ? "_PROMPT" : "_PROMPT2");
239 if (p == NULL) p = (firstline ? LUA_PROMPT : LUA_PROMPT2);
260 static int pushline (lua_State *L, int firstline) { argument
264 const char *prmt = get_prompt(L, firstline);
272 if (firstline && b[0] == '=') /* first line starts with `=' ? */
/barrelfish-2018-10-04/tools/harness/tests/
H A Drpctests.py268 firstline = raw_iter.next()
269 if firstline.startswith('Test skipped'):
/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_dfa_exec.c3195 BOOL utf, anchored, startline, firstline; local
3379 firstline = (re->options & PCRE_FIRSTLINE) != 0;
3439 /* If firstline is TRUE, the start of the match is constrained to the first
3444 if (firstline)
3643 and firstline is set. */
3645 if (firstline && IS_NEWLINE(current_subject)) break;
H A Dpcre_exec.c6367 BOOL firstline; local
6547 firstline = (re->options & PCRE_FIRSTLINE) != 0;
6747 /* If firstline is TRUE, the start of the match is constrained to the first
6753 if (firstline)
7004 if (firstline && IS_NEWLINE(start_match)) break;

Completed in 55 milliseconds