Home | History | Annotate | Download | only in libiberty

Lines Matching defs:args

599       printf ("extended operator with %d args\n",
600 dc->u.s_extended_operator.args);
817 cplus_demangle_fill_extended_operator (struct demangle_component *p, int args,
820 if (p == NULL || args < 0 || name == NULL)
823 p->u.s_extended_operator.args = args;
1052 d_make_extended_operator (struct d_info *di, int args,
1058 if (! cplus_demangle_fill_extended_operator (p, args, name))
1319 ::= <unscoped-template-name> <template-args>
1373 /* This is <template-args>, which means that we just saw
1394 /* This is <template-args>, which means that we just saw
1407 ::= N [<CV-qualifiers>] [<ref-qualifier>] <template-prefix> <template-args> E
1445 ::= <template-prefix> <template-args>
2192 ::= <template-template-param> <template-args>
2349 /* This may be <template-template-param> <template-args>.
2355 -> <template-prefix> <template-args>
2356 -> <prefix> <template-unqualified-name> <template-args>
2357 -> <unqualified-name> <template-unqualified-name> <template-args>
2358 -> <source-name> <template-unqualified-name> <template-args>
2359 -> <source-name> <operator-name> <template-args>
2360 -> <source-name> cv <type> <template-args>
2361 -> <source-name> cv <template-template-param> <template-args> <template-args>
2363 where the <template-args> is followed by another.
2367 -> <template-prefix> <template-args>
2368 -> <prefix> <template-unqualified-name> <template-args>
2369 -> <unqualified-name> <template-unqualified-name> <template-args>
2370 -> <source-name> <template-unqualified-name> <template-args>
2371 -> <source-name> <operator-name> <template-args>
2372 -> <source-name> cv <type> <template-args>
2373 -> <source-name> cv <template-param> <template-args>
2375 where we need to leave the <template-args> to be processed
2389 struct demangle_component *args;
2393 args = d_template_args (di);
2399 args);
2420 may be followed by tepmlate args. */
2945 /* <template-args> ::= I <template-arg>+ E */
3085 ::= sr <type> <unqualified-name> <template-args>
3174 int args;
3194 args = op->u.s_operator.op->args;
3197 args = op->u.s_extended_operator.args;
3200 args = 1;
3204 switch (args)
4124 /* Returns the I'th element of the template arglist ARGS, or NULL on
4128 d_index_template_argument (struct demangle_component *args, int i)
4132 for (a = args;