Lines Matching refs:IDENT
88 IDENT,
235 std::string super_name (const std::string &ident, unsigned int n_supers);
369 /* Return a string referring to a "super::" qualified name. IDENT is
374 rust_parser::super_name (const std::string &ident, unsigned int n_supers)
410 return "::" + std::string (scope, offset) + "::" + ident;
871 return IDENT;
1262 if (current_token != IDENT)
1546 case IDENT:
1687 if (current_token == IDENT && get_string () == "str")
1803 case IDENT:
1855 if (current_token != IDENT)
1862 "ident<...>". */
1870 if (current_token == IDENT)
1937 case IDENT:
2081 case IDENT:
2252 const int expected1[] = { DECIMAL_INTEGER, '.', IDENT, '(', ')', 0 };
2253 const int expected2[] = { INTEGER, '.', IDENT, '(', ')', 0 };
2270 const int expected[] = { IDENT, '.', COMPLETE, 0 };
2378 rust_lex_stringish_test (&parser, "hibob", "hibob", IDENT);
2379 rust_lex_stringish_test (&parser, "hibob__93", "hibob__93", IDENT);
2380 rust_lex_stringish_test (&parser, "thread", "thread", IDENT);
2381 rust_lex_stringish_test (&parser, "r#true", "true", IDENT);
2383 const int expected1[] = { IDENT, DECIMAL_INTEGER, 0 };
2386 const int expected2[] = { IDENT, '#', 0 };