Searched refs:type_name (Results 1 - 25 of 36) sorted by relevance

12

/haiku-buildtools/legacy/binutils/libiberty/
H A Dcp-demint.c133 const char *type_name)
138 if (p == NULL || type_name == NULL)
140 len = strlen (type_name);
144 && strcmp (type_name, cplus_demangle_builtin_types[i].name) == 0)
132 cplus_demangle_fill_builtin_type(struct demangle_component *p, const char *type_name) argument
/haiku-buildtools/gcc/libiberty/
H A Dcp-demint.c134 const char *type_name)
139 if (p == NULL || type_name == NULL)
141 len = strlen (type_name);
145 && strcmp (type_name, cplus_demangle_builtin_types[i].name) == 0)
133 cplus_demangle_fill_builtin_type(struct demangle_component *p, const char *type_name) argument
/haiku-buildtools/binutils/libiberty/
H A Dcp-demint.c134 const char *type_name)
139 if (p == NULL || type_name == NULL)
141 len = strlen (type_name);
145 && strcmp (type_name, cplus_demangle_builtin_types[i].name) == 0)
133 cplus_demangle_fill_builtin_type(struct demangle_component *p, const char *type_name) argument
/haiku-buildtools/binutils/gas/config/
H A Dobj-elf.c1899 const char *type_name; local
1917 type_name = obj_elf_type_name (& c);
1920 if (strcmp (type_name, "function") == 0
1921 || strcmp (type_name, "2") == 0
1922 || strcmp (type_name, "STT_FUNC") == 0)
1924 else if (strcmp (type_name, "object") == 0
1925 || strcmp (type_name, "1") == 0
1926 || strcmp (type_name, "STT_OBJECT") == 0)
1928 else if (strcmp (type_name, "tls_object") == 0
1929 || strcmp (type_name, "
[all...]
/haiku-buildtools/gcc/gcc/
H A Dtree-emutls.c220 tree type, type_name, field; local
227 type_name = NULL;
228 field = targetm.emutls.var_fields (type, &type_name);
229 if (!type_name)
230 type_name = get_identifier ("__emutls_object");
231 type_name = build_decl (UNKNOWN_LOCATION,
232 TYPE_DECL, type_name, type);
233 TYPE_NAME (type) = type_name;
H A Dgengtype.c592 create_user_defined_type (const char *type_name, struct fileloc *pos)
594 type_p ty = find_structure (type_name, TYPE_USER_STRUCT);
603 do_typedef (type_name, ty, pos);
609 char *str = xstrdup (type_name);
2499 filter_type_name (const char *type_name)
2501 if (strchr (type_name, '<') || strchr (type_name, ':'))
2504 char *s = xstrdup (type_name);
2512 return type_name;
588 create_user_defined_type(const char *type_name, struct fileloc *pos) argument
2491 filter_type_name(const char *type_name) argument
H A Dtree-parloops.c1315 tree type, type_name, nvar; local
1387 type_name = build_decl (UNKNOWN_LOCATION,
1390 TYPE_NAME (type) = type_name;
/haiku-buildtools/gcc/gcc/go/gofrontend/
H A Dimport.cc635 std::string type_name; local
637 type_name += c;
644 if (type_name.find('.') != std::string::npos)
647 if (type_name[0] == '.')
649 size_t dot = type_name.rfind('.');
650 pkgpath = type_name.substr(start, dot - start);
651 if (type_name[0] != '.')
652 type_name.erase(0, dot + 1);
684 Named_object* no = package->bindings()->lookup(type_name);
686 no = package->add_type_declaration(type_name, thi
[all...]
H A Dparse.h166 Type* type_name(bool issue_error);
/haiku-buildtools/legacy/binutils/include/
H A Ddemangle.h466 const char *type_name);
/haiku-buildtools/gcc/gcc/c-family/
H A Dc-ada-spec.c1363 tree type_name = TYPE_NAME (TREE_TYPE (decl)); local
1365 if (!type_name)
1373 else if (TREE_CODE (type_name) == IDENTIFIER_NODE)
1374 pp_ada_tree_identifier (buffer, type_name, decl, limited_access);
2083 tree type_name = TYPE_NAME (TREE_TYPE (node)); local
2100 && !TREE_VISITED (type_name)
2104 || (type_name && typ2
2157 && type_name != NULL_TREE)
2159 (buffer, type_name,
2635 type_name (tre function
[all...]
/haiku-buildtools/gcc/gcc/java/
H A Dclass.c435 const char *type_name = IDENTIFIER_POINTER (mangled_classname ("", TYPE)); \
436 char *buf = (char *) alloca (strlen (type_name) \
440 sprintf (buf, #NAME "_%s", type_name); \
452 sprintf (buf, #NAME "_syms_%s", type_name); \
466 const char *type_name = IDENTIFIER_POINTER (mangled_classname ("", type)); local
469 char *buf = (char *) alloca (strlen (type_name)
473 sprintf (buf, "_catch_classes_%s", type_name);
2593 tree super_class, type_name; local
2610 type_name = TYPE_NAME (this_class);
2612 && (CLASS_ABSTRACT (type_name) || CLASS_INTERFAC
[all...]
/haiku-buildtools/gcc/include/
H A Ddemangle.h601 const char *type_name);
/haiku-buildtools/binutils/include/
H A Ddemangle.h629 const char *type_name);
/haiku-buildtools/binutils/binutils/
H A Dstabs.c1141 parse_stab_type (void *dhandle, struct stab_handle *info, const char *type_name, const char **pp, debug_type **slotp) argument
1305 if (type_name != NULL
1306 && strncmp (type_name, *pp, p - *pp) == 0
1307 && type_name[p - *pp] == '\0')
1538 dtype = parse_stab_range_type (dhandle, info, type_name, pp, typenums);
1560 dtype = parse_stab_struct_type (dhandle, info, type_name, pp,
1650 parse_stab_range_type (void *dhandle, struct stab_handle *info, const char *type_name, const char **pp, const int *typenums) argument
1749 if (type_name != NULL)
1751 if (strcmp (type_name, "long long int") == 0)
1753 else if (strcmp (type_name, "lon
2303 const char *type_name; local
[all...]
/haiku-buildtools/legacy/gcc/gcc/cp/
H A Dparse.y263 %type <ttype> type_name nested_name_specifier nested_type ptr_to_mem
2800 | nested_name_specifier type_name %prec EMPTY
2804 | type_name %prec EMPTY
2808 type_name %prec EMPTY
2818 | global_scope type_name
2836 nested_name_specifier type_name %prec EMPTY
2935 type_name:
2949 /* Why the @#$%^& do type_name and notype_identifier need to be expanded
3078 global_scope type_name
2933 type_name: label
/haiku-buildtools/gcc/gcc/ada/gcc-interface/
H A Dgigi.h664 extern tree create_type_stub_decl (tree type_name, tree type);
671 extern tree create_type_decl (tree type_name, tree type, bool artificial_p,
H A Dutils.c2266 create_type_stub_decl (tree type_name, tree type)
2271 tree type_decl = build_decl (input_location, TYPE_DECL, type_name, type); argument
2284 create_type_decl (tree type_name, tree type, bool artificial_p,
2299 DECL_NAME (type_decl) = type_name;
2302 type_decl = build_decl (input_location, TYPE_DECL, type_name, type);
3233 char type_name[20];
3249 sprintf (type_name, "%sSIGNED_%u", unsignedp ? "UN" : "", precision);
3250 TYPE_NAME (t) = get_identifier (type_name);
3262 char type_name[20];
3274 sprintf (type_name, "FLOAT
2253 create_type_stub_decl(tree type_name, tree type) argument
3213 char type_name[20]; local
3242 char type_name[20]; local
[all...]
/haiku-buildtools/gcc/gcc/c/
H A Dc-parser.c6417 struct c_type_name *type_name;
6421 type_name = c_parser_type_name (parser);
6423 if (type_name == NULL)
6432 used_types_insert (type_name->specs->type);
6435 return c_parser_postfix_expression_after_paren_type (parser, type_name,
6442 ret.value = c_cast_expr (cast_loc, type_name, expr.value);
6630 struct c_type_name *type_name;
6633 type_name = c_parser_type_name (parser);
6635 if (type_name == NULL)
6648 type_name,
6415 struct c_type_name *type_name; local
6628 struct c_type_name *type_name; local
6702 struct c_type_name *type_name; local
6904 struct c_type_name *type_name; local
7205 struct c_type_name *type_name; local
7735 c_parser_postfix_expression_after_paren_type(c_parser *parser, struct c_type_name *type_name, location_t type_loc) argument
8888 struct c_type_name *type_name = NULL; local
[all...]
H A Dc-decl.c4433 groktypename (struct c_type_name *type_name, tree *expr,
4437 tree attrs = type_name->specs->attrs;
4439 type_name->specs->attrs = NULL_TREE;
4441 type = grokdeclarator (type_name->declarator, type_name->specs, TYPENAME,
5185 check_compound_literal_type (location_t loc, struct c_type_name *type_name)
5188 && (type_name->specs->typespec_kind == ctsk_tagdef
5189 || type_name->specs->typespec_kind == ctsk_tagfirstref))
4410 groktypename(struct c_type_name *type_name, tree *expr, bool *expr_const_operands) argument
5161 check_compound_literal_type(location_t loc, struct c_type_name *type_name) argument
/haiku-buildtools/legacy/gcc/gcc/java/
H A Dparse.c5353 char *type_name;
5357 type_name = IDENTIFIER_POINTER (TYPE_NAME (type));
5359 type_name = lang_printable_name (type, 0);
5365 type_name, IDENTIFIER_POINTER (name), line);
6528 obtain_incomplete_type (type_name)
6529 tree type_name;
6533 if (TREE_CODE (type_name) == EXPR_WITH_FILE_LOCATION)
6534 name = EXPR_WFL_NODE (type_name);
6535 else if (INCOMPLETE_TYPE_P (type_name))
6536 name = TYPE_NAME (type_name);
5349 char *type_name; local
7902 tree type_name = NULL_TREE; local
7967 tree type_name = lookup_package_type (name, len); local
[all...]
H A Dparse.y1764 'class_type' instead of 'TypeName' (type_name) mentionned
2696 char *type_name;
2700 type_name = IDENTIFIER_POINTER (TYPE_NAME (type));
2702 type_name = lang_printable_name (type, 0);
2708 type_name, IDENTIFIER_POINTER (name), line);
3871 obtain_incomplete_type (type_name)
3872 tree type_name;
3876 if (TREE_CODE (type_name) == EXPR_WITH_FILE_LOCATION)
3877 name = EXPR_WFL_NODE (type_name);
3878 else if (INCOMPLETE_TYPE_P (type_name))
[all...]
/haiku-buildtools/gcc/gcc/fortran/
H A Dtrans-types.c1836 const char *type_name;
1851 type_name = IDENTIFIER_POINTER (tmp);
1853 type_name = "unknown";
1855 GFC_MAX_SYMBOL_LEN, type_name);
1829 const char *type_name; local
/haiku-buildtools/legacy/gcc/texinfo/makeinfo/
H A Dmakeinfo.c7148 char *category, *defined_name, *type_name, *type_name2;
7212 type_name = next_nonwhite_defun_arg (&scan_args);
7254 execute_string (" -- %s: %s %s", category, type_name, defined_name);
7257 execute_string (" -- %s of %s: %s", category, type_name, defined_name);
7260 execute_string (" -- %s on %s: %s", category, type_name, defined_name);
7263 execute_string (" -- %s on %s: %s %s", category, type_name, type_name2,
7311 COMMAND_PREFIX, defined_name, type_name);
7132 char *category, *defined_name, *type_name, *type_name2; local
/haiku-buildtools/legacy/gcc/gcc/ch/
H A Dtasking.c1238 tree type_name;
1260 type_name = get_identifier ("__tmp_SD_struct");
1261 tasking_message_type = build_decl (TYPE_DECL, type_name, temp);
1223 tree type_name; local

Completed in 541 milliseconds

12