Searched refs:physname (Results 1 - 15 of 15) sorted by relevance

/haiku-fatelf/src/bin/gdb/gdb/
H A Dp-typeprint.c140 pascal_type_print_method_args (char *physname, char *methodname,
143 int is_constructor = DEPRECATED_STREQN (physname, "__ct__", 6);
144 int is_destructor = DEPRECATED_STREQN (physname, "__dt__", 6);
148 physname += 6;
153 if (physname && (*physname != 0))
161 while (isdigit (physname[0]))
163 while (isdigit (physname[len]))
167 i = strtol (physname, &argname, 0);
168 physname
139 pascal_type_print_method_args(char *physname, char *methodname, struct ui_file *stream) argument
638 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j); local
[all...]
H A Dcp-support.h55 extern char *cp_class_name_from_physname (const char *physname);
57 extern char *method_name_from_physname (const char *physname);
H A Djv-typeprint.c223 char *physname; local
226 physname = TYPE_FN_FIELD_PHYSNAME (f, j);
229 = (is_constructor_name (physname)
230 || is_destructor_name (physname));
H A Dcp-support.c151 cp_class_name_from_physname (const char *physname) argument
156 char *demangled_name = cplus_demangle (physname, DMGL_ANSI | DMGL_PARAMS);
176 method_name_from_physname (const char *physname) argument
181 char *demangled_name = cplus_demangle (physname, DMGL_ANSI | DMGL_PARAMS);
H A Dlanguage.h255 char *(*la_class_name_from_physname) (const char *physname);
456 /* Return class name from physname, or NULL. */
458 const char *physname);
H A Dsymtab.c326 char *physname = TYPE_FN_FIELD_PHYSNAME (f, signature_id);
329 /* Does the form of physname indicate that it is the full mangled name
334 int is_destructor = is_destructor_name (physname);
341 /* Nothing to do if physname already contains a fully mangled v3 abi name
343 if ((physname[0] == '_' && physname[1] == 'Z')
345 return xstrdup (physname);
347 is_full_physname_constructor = is_constructor_name (physname);
353 is_destructor = (strncmp (physname, "__dt", 4) == 0);
357 mangled_name = (char *) xmalloc (strlen (physname)
325 char *physname = TYPE_FN_FIELD_PHYSNAME (f, signature_id); local
[all...]
H A Dstabsread.c2076 update_method_name_from_physname (char **old_name, char *physname)
2080 method_name = method_name_from_physname (physname);
2085 "Method has bad physname %s\n", physname);
2240 new_sublist->fn_field.physname = savestring (*pp, p - *pp);
2348 detect a fully mangled physname here and set is_stub
2353 if (!(strncmp (new_sublist->fn_field.physname,
2355 && new_sublist->fn_field.physname[slen] == '_'
2356 && new_sublist->fn_field.physname[slen + 1] == '_'))
2410 For non-stub methods, in GNU v3, we have a complete physname
2070 update_method_name_from_physname(char **old_name, char *physname) argument
[all...]
H A Dgdbtypes.h423 Otherwise, physname is the mangled label of the static field. */
426 char *physname; member in union:main_type::field::field_location
436 is specified by the label loc.physname, and 2 for fields whose location
653 char *physname; member in struct:cplus_struct_type::fn_fieldlist::fn_field
863 #define FIELD_PHYSNAME(thisfld) ((thisfld).loc.physname)
921 #define TYPE_FN_FIELD_PHYSNAME(thisfn, n) (thisfn)[n].physname
H A Djv-lang.c65 static char *java_class_name_from_physname (const char *physname);
556 fn_fields[k].physname = "";
1012 java_class_name_from_physname (const char *physname) argument
1017 char *demangled_name = java_demangle (physname, DMGL_PARAMS | DMGL_ANSI);
H A Dc-typeprint.c949 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
951 is_constructor_name (physname)
952 || is_destructor_name (physname)
948 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j); local
H A Dvalues.c980 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j);
984 sym = lookup_symbol (physname, 0, VAR_DOMAIN, 0, NULL);
992 msym = lookup_minimal_symbol (physname, NULL, NULL);
974 char *physname = TYPE_FN_FIELD_PHYSNAME (f, j); local
H A Dlanguage.c1062 /* Return class name from physname or NULL. */
1065 const char *physname)
1068 return current_language->la_class_name_from_physname (physname);
1056 language_class_name_from_physname(const struct language_defn *current_language, const char *physname) argument
H A Ddwarf2read.c3376 char *physname; local
3386 physname = dwarf2_linkage_name (die, cu);
3390 SET_FIELD_PHYSNAME (*fp, physname ? physname : "");
3508 char *physname; local
3519 physname = dwarf2_linkage_name (die, cu);
3562 fnp->physname = physname ? physname : "";
3587 physname);
[all...]
H A Dvalops.c2215 fprintf_filtered (gdb_stderr,"Overloaded method instance %s, # of parms %d\n", fns_ptr[ix].physname, nparms);
H A Dhpread.c3957 /* "physname" is intended to be the name of this overloaded instance. */
3961 fn_p->field.fn_fields[ix].physname = method_alias;
3963 fn_p->field.fn_fields[ix].physname = method_name;
4184 member. Mark it as static with a physname of NULL.
4185 fix_static_member_physnames will assign the physname later. */

Completed in 127 milliseconds