Home
last modified time | relevance | path

Searched refs:nested_definition_count (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dparser.c19635 int nested_definition_count = 0; in cp_parser_namespace_definition() local
19662 if (nested_inline_p && nested_definition_count != 0) in cp_parser_namespace_definition()
19694 if (!nested_definition_count && cxx_dialect < cxx17) in cp_parser_namespace_definition()
19704 nested_definition_count += count; in cp_parser_namespace_definition()
19710 if (nested_definition_count && !identifier) in cp_parser_namespace_definition()
19713 if (nested_definition_count && attribs) in cp_parser_namespace_definition()
19716 if (nested_definition_count && topmost_inline_p) in cp_parser_namespace_definition()
19721 nested_definition_count += push_namespace (identifier, is_inline); in cp_parser_namespace_definition()
19742 while (nested_definition_count--) in cp_parser_namespace_definition()
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dparser.cc21276 int nested_definition_count = 0; in cp_parser_namespace_definition() local
21303 if (nested_inline_p && nested_definition_count != 0) in cp_parser_namespace_definition()
21336 if (!nested_definition_count && pedantic && cxx_dialect < cxx17) in cp_parser_namespace_definition()
21346 nested_definition_count += count; in cp_parser_namespace_definition()
21352 if (nested_definition_count && !identifier) in cp_parser_namespace_definition()
21355 if (nested_definition_count && attribs) in cp_parser_namespace_definition()
21358 if (nested_definition_count && topmost_inline_p) in cp_parser_namespace_definition()
21363 nested_definition_count += push_namespace (identifier, is_inline); in cp_parser_namespace_definition()
21384 while (nested_definition_count--) in cp_parser_namespace_definition()
H A DChangeLog-2016175 nested_definition_count only if push_namespace succeeds.