Lines Matching defs:cpp_demangle_data
84 struct cpp_demangle_data { struct
85 struct vector_str output; /* output string vector */
86 struct vector_str subst; /* substitution string vector */
87 struct vector_str tmpl;
88 struct vector_str class_type;
89 struct vector_str *cur_output; /* ptr to current output vec */
90 struct vector_read_cmd cmd;
91 bool mem_rst; /* restrict member function */
92 bool mem_vat; /* volatile member function */
93 bool mem_cst; /* const member function */
94 bool mem_ref; /* lvalue-ref member func */
95 bool mem_rref; /* rvalue-ref member func */
96 bool is_tmpl; /* template args */
120 static void cpp_demangle_data_dest(struct cpp_demangle_data *); argument