Lines Matching defs:options

43       char *cplus_demangle_v3(const char *mangled, int options)
235 /* The options passed to the demangler. */
236 int options;
994 if (dc != NULL && top_level && (di->options & DMGL_PARAMS) == 0)
1322 if ((di->options & DMGL_JAVA) != 0
2551 verbose = (di->options & DMGL_VERBOSE) != 0;
2669 options bits passed to the demangler. DC is the tree to print.
2678 cplus_demangle_print (int options, const struct demangle_component *dc,
2683 dpi.options = options;
2728 if ((dpi->options & DMGL_JAVA) == 0)
2737 if ((dpi->options & DMGL_JAVA) == 0)
3055 if ((dpi->options & DMGL_JAVA) == 0)
3069 if ((dpi->options & DMGL_RET_POSTFIX) != 0)
3094 if ((dpi->options & DMGL_RET_POSTFIX) == 0)
3098 if ((dpi->options & DMGL_RET_POSTFIX) == 0)
3498 if ((dpi->options & DMGL_JAVA) == 0)
3548 if ((dpi->options & DMGL_JAVA) == 0)
3777 cplus_demangle_init_info (const char *mangled, int options, size_t len,
3782 di->options = options;
3805 name. OPTIONS is the usual libiberty demangler options. On
3811 d_demangle (const char* mangled, int options, size_t *palc)
3848 if ((options & DMGL_TYPES) == 0)
3853 cplus_demangle_init_info (mangled, options, len, &di);
3887 if (((options & DMGL_PARAMS) != 0) && d_peek_char (&di) != '\0')
3904 ret = cplus_demangle_print (options, dc, estimate, palc);
4031 cplus_demangle_v3 (const char* mangled, int options)
4035 return d_demangle (mangled, options, &alc);
4233 fprintf (fp, "Usage: %s [options] [names ...]\n", program_name);
4262 int options = DMGL_PARAMS | DMGL_ANSI | DMGL_TYPES;
4267 /* Parse options. */
4282 options &= ~ DMGL_PARAMS;
4286 options |= DMGL_VERBOSE;
4319 s = cplus_demangle_v3 (dyn_string_buf (mangled), options);
4360 s = cplus_demangle_v3 (argv[i], options);