Lines Matching refs:new_scope
6356 tree new_scope; in cp_parser_nested_name_specifier_opt() local
6376 new_scope = resolve_typename_type (parser->scope, in cp_parser_nested_name_specifier_opt()
6378 if (TREE_CODE (new_scope) != TYPENAME_TYPE) in cp_parser_nested_name_specifier_opt()
6379 parser->scope = new_scope; in cp_parser_nested_name_specifier_opt()
6461 new_scope in cp_parser_nested_name_specifier_opt()
6632 if (TREE_CODE (new_scope) == TYPE_DECL) in cp_parser_nested_name_specifier_opt()
6633 new_scope = TREE_TYPE (new_scope); in cp_parser_nested_name_specifier_opt()
6636 check_template_keyword_in_nested_name_spec (new_scope); in cp_parser_nested_name_specifier_opt()
6639 if (TYPE_P (new_scope) in cp_parser_nested_name_specifier_opt()
6642 && !COMPLETE_TYPE_P (new_scope) in cp_parser_nested_name_specifier_opt()
6644 && !dependent_type_p (new_scope)) in cp_parser_nested_name_specifier_opt()
6646 new_scope = complete_type (new_scope); in cp_parser_nested_name_specifier_opt()
6650 if (!COMPLETE_TYPE_P (new_scope) in cp_parser_nested_name_specifier_opt()
6651 && currently_open_class (new_scope)) in cp_parser_nested_name_specifier_opt()
6652 new_scope = TYPE_MAIN_VARIANT (new_scope); in cp_parser_nested_name_specifier_opt()
6656 parser->scope = new_scope; in cp_parser_nested_name_specifier_opt()