Home | History | Annotate | Download | only in libiberty

Lines Matching defs:args

130   int temp_start;       /* index in demangled to start of template args */
1541 /* After picking off the function args, we expect to either
1640 argument token, and start processing args. */
2301 int n, const char **anchor, const char **args)
2308 *args = *anchor + 6;
2309 len = consume_count (args);
2312 if (*args + len == mangled + n && **args == '_')
2314 ++*args;
2325 *args = *anchor + 6;
2326 len = consume_count (args);
2329 if (*args + len == mangled + n && **args == '_')
2331 ++*args;
2338 *args = *anchor + 3;
2339 len = consume_count (args);
2342 if (*args + len == mangled + n && **args == '_')
2344 ++*args;
2358 const char *args;
2363 template args */
2419 /* Check if we're at the end of template args.
2421 _ if done with template args for a function */
2436 else if (arm_pt (work, *mangled, n, &p, &args))
2453 while (args < e) {
2457 switch (*args)
2459 /* HP cfront extensions to ARM for template args */
2464 args++;
2465 if (!do_type (work, &args, &type_str))
2471 if (*args != 'L')
2473 args++;
2475 if (!snarf_numeric_literal (&args, &arg))
2481 args++;
2482 if (!snarf_numeric_literal (&args, &arg))
2488 const char* old_args = args;
2489 if (!do_type (work, &args, &arg))
2493 if (args == old_args)
2505 if (args >= e)
2600 /* adjust so we don't include template args */
3620 /* After picking off the function args, we expect to either find the
4149 snarf_numeric_literal (const char **args, string *arg)
4151 if (**args == '-')
4155 (*args)++;
4157 else if (**args == '+')
4158 (*args)++;
4160 if (!ISDIGIT ((unsigned char)**args))
4163 while (ISDIGIT ((unsigned char)**args))
4165 char_str[0] = **args;
4167 (*args)++;
4416 indicating the start of the function args. For lucid/ARM style, we
4610 /* This leaves MANGLED pointing to the 'F' marking func args */