Searched refs:last_token (Results 1 - 11 of 11) sorted by relevance

/freebsd-11-stable/bin/sh/
H A Darith_yacc.c62 static int last_token; variable
176 if (last_token != ARITH_RPAREN)
178 last_token = yylex();
181 last_token = op;
184 last_token = op;
218 op2 = last_token;
222 op2 = last_token;
239 op = last_token;
251 op = last_token;
268 op = last_token;
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dmacroexp.c70 int last_token;
95 b->last_token = -1;
108 buf->last_token = -1;
212 tok->last_token = 0;
469 does. Initialize TOK's last_token field. Return non-zero if we
543 at the beginning of DEST. SRC and DEST must have their last_token
544 fields set. Upon return, DEST's last_token field is set correctly.
563 gdb_assert (src->last_token != -1);
564 gdb_assert (dest->last_token != -1);
572 if (dest->last_token
69 int last_token; member in struct:macro_buffer
[all...]
/freebsd-11-stable/usr.bin/indent/
H A Dlexi.c373 && (ps.last_token == rparen || ps.last_token == semicolon ||
374 ps.last_token == decl ||
375 ps.last_token == lbrace || ps.last_token == rbrace)) {
H A Dindent_globs.h237 int last_token; member in struct:parser_state
H A Dindent.c114 ps.last_token = semicolon;
524 if (ps.last_token != comma || ps.p_l_follow > 0
540 (ps.last_token != ident || proc_calls_space ||
743 if (ps.last_token == rparen && rparen_count == 0)
936 if (ps.last_token == rparen && ps.tos <= 1) {
1210 ps.last_token = type_code;
H A Dpr_comment.c192 if (blanklines_before_blockcomments && ps.last_token != lbrace)
/freebsd-11-stable/contrib/subversion/subversion/libsvn_ra_svn/
H A Deditorp.c85 ra_svn_token_entry_t *last_token;
494 ds->last_token = entry;
504 if (ds->last_token && svn_string_compare(ds->last_token->token, token))
506 *entry = ds->last_token;
511 ds->last_token = *entry;
529 ds->last_token = NULL;
1093 state.last_token = NULL;
84 ra_svn_token_entry_t *last_token; member in struct:ra_svn_driver_state_t
/freebsd-11-stable/contrib/groff/src/preproc/refer/
H A Dref.cpp790 const char *last_token = end; local
795 last_token = p;
797 return end - last_token == 1
798 && (*last_token == '.' || *last_token == '!' || *last_token == '?');
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCPlusPlusNameParser.cpp610 clang::Token &last_token = m_tokens[range.end_index - 1]; local
612 clang::SourceLocation end_loc = last_token.getLocation();
614 unsigned end_pos = end_loc.getRawEncoding() + last_token.getLength();
/freebsd-11-stable/libexec/rtld-elf/
H A Drtld.c3208 char *envcopy, *fdstr, *found, *last_token; local
3235 for (fdstr = strtok_r(envcopy, ":", &last_token); fdstr != NULL;
3236 fdstr = strtok_r(NULL, ":", &last_token)) {
/freebsd-11-stable/contrib/gcc/cp/
H A Dparser.c129 in this lexer are [buffer, last_token). */
130 cp_token_position GTY ((skip)) last_token;
323 lexer->last_token = pos;
349 lexer->last_token = last;
599 if (token == lexer->last_token)
632 if (lexer->next_token == lexer->last_token)
672 if (tok == lexer->last_token)
692 peek = lexer->last_token;

Completed in 238 milliseconds