Home
last modified time | relevance | path

Searched refs:this_quals (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/gnu/usr.bin/gcc/gcc/cp/
Ddecl2.c136 int this_quals = TYPE_UNQUALIFIED; local
142 if ((type_quals | this_quals) & tq)
145 this_quals |= tq;
166 return this_quals;
357 int this_quals = TYPE_UNQUALIFIED; local
371 this_quals = grok_method_quals (ctype, function, quals);
384 this_quals |= TYPE_QUAL_CONST;
385 qual_type = cp_build_qualified_type (type, this_quals);
387 c_apply_type_quals_to_decl (this_quals, parm);
/openbsd/src/gnu/gcc/gcc/cp/
Ddecl.c5998 cp_cv_quals this_quals; in build_this_parm() local
6003 this_quals = (quals & TYPE_QUAL_RESTRICT) | TYPE_QUAL_CONST; in build_this_parm()
6004 qual_type = cp_build_qualified_type (this_type, this_quals); in build_this_parm()
6006 cp_apply_type_quals_to_decl (this_quals, parm); in build_this_parm()