Home
last modified time | relevance | path

Searched refs:token2 (Results 1 – 7 of 7) sorted by relevance

/freebsd-12.1/contrib/googletest/googlemock/scripts/generator/cpp/
H A Dast.py1294 token = token2 = self._GetNextToken()
1297 token2 = self._GetNextToken()
1298 if token2.token_type == tokenize.SYNTAX and token2.name == '~':
1303 if token2 is not token:
1304 return_type_and_name.insert(1, token2)
/freebsd-12.1/contrib/gcclibs/libcpp/
H A Dlex.c1474 const cpp_token *token2) in cpp_avoid_paste() argument
1476 enum cpp_ttype a = token1->type, b = token2->type; in cpp_avoid_paste()
1481 if (token2->flags & NAMED_OP) in cpp_avoid_paste()
1485 if (token2->flags & DIGRAPH) in cpp_avoid_paste()
1509 && name_p (pfile, &token2->val.str)) in cpp_avoid_paste()
/freebsd-12.1/contrib/libgnuregex/
H A Dregcomp.c3095 re_token_t token2; in parse_bracket_exp() local
3121 token_len2 = peek_token_bracket (&token2, regexp, syntax); in parse_bracket_exp()
3122 if (BE (token2.type == END_OF_RE, 0)) in parse_bracket_exp()
3127 if (token2.type == OP_CLOSE_BRACKET) in parse_bracket_exp()
3141 ret = parse_bracket_element (&end_elem, regexp, &token2, token_len2, in parse_bracket_exp()
3333 re_token_t token2; in parse_bracket_element() local
3334 (void) peek_token_bracket (&token2, regexp, syntax); in parse_bracket_element()
3335 if (token2.type != OP_CLOSE_BRACKET) in parse_bracket_element()
/freebsd-12.1/contrib/subversion/subversion/libsvn_diff/
H A Ddiff_memory.c152 token_compare(void *baton, void *token1, void *token2, int *result) in token_compare() argument
158 svn_string_t *t2 = token2; in token_compare()
H A Ddiff_file.c1021 token_compare(void *baton, void *token1, void *token2, int *compare) in token_compare() argument
1037 file_token[1] = token2; in token_compare()
/freebsd-12.1/contrib/gcc/cp/
H A Dparser.c7584 cp_token token2; in cp_parser_declaration() local
7606 token2.type = CPP_EOF; in cp_parser_declaration()
7607 token2.keyword = RID_MAX; in cp_parser_declaration()
7624 if (token2.type == CPP_LESS in cp_parser_declaration()
7628 else if (token2.type == CPP_LESS) in cp_parser_declaration()
7645 && token2.keyword == RID_TEMPLATE) in cp_parser_declaration()
7651 (token2.type == CPP_NAME in cp_parser_declaration()
7655 || token2.type == CPP_OPEN_BRACE in cp_parser_declaration()
7726 cp_token *token2; in cp_parser_block_declaration() local
17183 cp_token *token2; in cp_parser_nth_token_starts_template_argument_list_p() local
[all …]
H A DChangeLog3790 * parser.c (cp_parser_declaration): Set token2.type to CPP_EOF,