Home
last modified time | relevance | path

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

/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Dparse.c12534 tree sdecl; local
12543 for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
12544 if (DECL_CONSTRUCTOR_P (sdecl))
12547 tree arg_type = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
12566 for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
12568 tree arg = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
12571 if (DECL_CONSTRUCTOR_P (sdecl) && arg == end_params_node)
H A Dparse.y8969 tree sdecl; local
8978 for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
8979 if (DECL_CONSTRUCTOR_P (sdecl))
8982 tree arg_type = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
9001 for (sdecl = TYPE_METHODS (class); sdecl; sdecl = TREE_CHAIN (sdecl))
9003 tree arg = TREE_CHAIN (TYPE_ARG_TYPES (TREE_TYPE (sdecl)));
9006 if (DECL_CONSTRUCTOR_P (sdecl) && arg == end_params_node)
H A DChangeLog7162 (verify_constructor_super): New local `sdecl', use it. Search for