Lines Matching refs:decl
1165 string decl;
1179 string_init (&decl);
1190 success = gnu_special (work, &mangled, &decl);
1194 string_delete (&decl);
1199 success = demangle_prefix (work, &mangled, &decl);
1203 success = demangle_signature (work, &mangled, &decl);
1207 string_prepend (&decl, "global constructors keyed to ");
1212 string_prepend (&decl, "global destructors keyed to ");
1217 string_prepend (&decl, "import stub for ");
1220 demangled = mop_up (work, &decl, success);
1367 terminated and return it. Otherwise, free the demangling decl. */
2970 and create the decl. Note that we consume the entire mangled
3205 and create the decl. Note that we consume the entire mangled
3543 string decl;
3548 string_init (&decl);
3564 string_prepend (&decl, "*");
3572 string_prepend (&decl, "&");
3581 if (!STRING_EMPTY (&decl)
3582 && (decl.b[0] == '*' || decl.b[0] == '&'))
3584 string_prepend (&decl, "(");
3585 string_append (&decl, ")");
3587 string_append (&decl, "[");
3589 success = demangle_template_value_parm (work, mangled, &decl,
3593 string_append (&decl, "]");
3614 if (!STRING_EMPTY (&decl)
3615 && (decl.b[0] == '*' || decl.b[0] == '&'))
3617 string_prepend (&decl, "(");
3618 string_append (&decl, ")");
3623 if (!demangle_nested_args (work, mangled, &decl)
3641 string_append (&decl, ")");
3646 string_prepend (&decl, SCOPE_STRING (work));
3657 string_prependn (&decl, *mangled, n);
3664 string_prepends (&decl, &temp);
3675 string_prependn (&decl, temp.b, temp.p - temp.b);
3686 success = demangle_qualified (work, mangled, &decl,
3698 string_prepend (&decl, "(");
3720 if ((member && !demangle_nested_args (work, mangled, &decl))
3733 APPEND_BLANK (&decl);
3734 string_append (&decl, qualifier_string (type_quals));
3747 if (!STRING_EMPTY (&decl))
3748 string_prepend (&decl, " ");
3750 string_prepend (&decl, demangle_qualifier (**mangled));
3819 if (!STRING_EMPTY (&decl))
3822 string_appends (result, &decl);
3827 string_delete (&decl);
4617 If so, then just record it, clear the decl, and return.
4618 We can't build the actual constructor/destructor decl until later,