Lines Matching defs:options

43       char *cplus_demangle_v3(const char *mangled, int options)
45 int cplus_demangle_v3_callback(const char *mangled, int options,
280 /* The options passed to the demangler. */
281 int options;
1040 if (dc != NULL && top_level && (di->options & DMGL_PARAMS) == 0)
1368 if ((di->options & DMGL_JAVA) != 0
2597 verbose = (di->options & DMGL_VERBOSE) != 0;
2717 d_print_init (struct d_print_info *dpi, int options,
2720 dpi->options = options;
2790 options bits passed to the demangler. DC is the tree to print.
2800 cplus_demangle_print_callback (int options,
2806 d_print_init (&dpi, options, callback, opaque);
2816 options bits passed to the demangler. DC is the tree to print.
2825 cplus_demangle_print (int options, const struct demangle_component *dc,
2832 if (! cplus_demangle_print_callback (options, dc,
2862 if ((dpi->options & DMGL_JAVA) == 0)
2871 if ((dpi->options & DMGL_JAVA) == 0)
2992 if ((dpi->options & DMGL_JAVA) != 0
3206 if ((dpi->options & DMGL_JAVA) == 0)
3220 if ((dpi->options & DMGL_RET_POSTFIX) != 0)
3245 if ((dpi->options & DMGL_RET_POSTFIX) == 0)
3249 if ((dpi->options & DMGL_RET_POSTFIX) == 0)
3649 if ((dpi->options & DMGL_JAVA) == 0)
3699 if ((dpi->options & DMGL_JAVA) == 0)
3928 cplus_demangle_init_info (const char *mangled, int options, size_t len,
3933 di->options = options;
3956 name. OPTIONS is the usual libiberty demangler options. On success,
3960 d_demangle_callback (const char *mangled, int options,
3987 if ((options & DMGL_TYPES) == 0)
3992 cplus_demangle_init_info (mangled, options, strlen (mangled), &di);
4015 if (((options & DMGL_PARAMS) != 0) && d_peek_char (&di) != '\0')
4023 ? cplus_demangle_print_callback (options, dc, callback, opaque)
4032 name. OPTIONS is the usual libiberty demangler options. On
4038 d_demangle (const char *mangled, int options, size_t *palc)
4045 status = d_demangle_callback (mangled, options,
4198 cplus_demangle_v3 (const char *mangled, int options)
4202 return d_demangle (mangled, options, &alc);
4206 cplus_demangle_v3_callback (const char *mangled, int options,
4209 return d_demangle_callback (mangled, options, callback, opaque);
4365 fprintf (fp, "Usage: %s [options] [names ...]\n", program_name);
4394 int options = DMGL_PARAMS | DMGL_ANSI | DMGL_TYPES;
4399 /* Parse options. */
4414 options &= ~ DMGL_PARAMS;
4418 options |= DMGL_VERBOSE;
4451 s = cplus_demangle_v3 (dyn_string_buf (mangled), options);
4492 s = cplus_demangle_v3 (argv[i], options);