Home
last modified time | relevance | path

Searched refs:new_type (Results 1 – 19 of 19) sorted by relevance

/NextBSD/crypto/heimdal/lib/asn1/
HDasn1parse.y52 static Type *new_type (Typetype t);
353 TE_EXPLICIT, new_type(TBoolean));
397 TE_EXPLICIT, new_type(TInteger));
401 $$ = new_type(TInteger);
407 $$ = new_type(TInteger);
443 $$ = new_type(TInteger);
454 $$ = new_type(TBitString);
461 $$ = new_type(TBitString);
470 TE_EXPLICIT, new_type(TOID));
475 Type *t = new_type(TOctetString);
[all …]
HDasn1parse.c266 static Type *new_type (Typetype t);
1853 TE_EXPLICIT, new_type(TBoolean));
1907 TE_EXPLICIT, new_type(TInteger));
1914 (yyval.type) = new_type(TInteger);
1923 (yyval.type) = new_type(TInteger);
1968 (yyval.type) = new_type(TInteger);
1977 (yyval.type) = new_type(TBitString);
1987 (yyval.type) = new_type(TBitString);
1997 TE_EXPLICIT, new_type(TOID));
2004 Type *t = new_type(TOctetString);
[all …]
/NextBSD/contrib/llvm/tools/lldb/source/Interpreter/
HDOptionValueLanguage.cpp50 LanguageType new_type = LanguageRuntime::GetLanguageTypeFromString(value.data()); in SetValueFromString() local
52 m_current_value = new_type; in SetValueFromString()
/NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/
HDEvent.h164 SetType (uint32_t new_type) in SetType() argument
166 m_type = new_type; in SetType()
/NextBSD/contrib/gcc/cp/
HDtree.c1961 tree new_type; in cp_build_type_attribute_variant() local
1963 new_type = build_type_attribute_variant (type, attributes); in cp_build_type_attribute_variant()
1964 if (TREE_CODE (new_type) == FUNCTION_TYPE in cp_build_type_attribute_variant()
1965 && (TYPE_RAISES_EXCEPTIONS (new_type) in cp_build_type_attribute_variant()
1967 new_type = build_exception_variant (new_type, in cp_build_type_attribute_variant()
1971 gcc_assert (!CLASS_TYPE_P (type) || new_type == type); in cp_build_type_attribute_variant()
1973 return new_type; in cp_build_type_attribute_variant()
HDpt.c1708 tree new_type; in copy_default_args_to_explicit_spec() local
1766 new_type = build_method_type_directly (object_type, in copy_default_args_to_explicit_spec()
1771 new_type = build_function_type (TREE_TYPE (old_type), in copy_default_args_to_explicit_spec()
1773 new_type = cp_build_type_attribute_variant (new_type, in copy_default_args_to_explicit_spec()
1775 new_type = build_exception_variant (new_type, in copy_default_args_to_explicit_spec()
1777 TREE_TYPE (decl) = new_type; in copy_default_args_to_explicit_spec()
6447 tree new_type = tsubst (TREE_TYPE (t), args, complain, in_decl); in tsubst_decl() local
6448 if (new_type == error_mark_node) in tsubst_decl()
6453 TREE_TYPE (r) = new_type; in tsubst_decl()
6455 = build_decl (TYPE_DECL, DECL_NAME (decl), new_type); in tsubst_decl()
[all …]
HDdecl.c1084 tree new_type; in check_redeclaration_exception_specification() local
1089 new_type = TREE_TYPE (new_decl); in check_redeclaration_exception_specification()
1090 new_exceptions = TYPE_RAISES_EXCEPTIONS (new_type); in check_redeclaration_exception_specification()
/NextBSD/contrib/gdb/gdb/
HDc-exp.y945 struct type *new_type; variable
957 new_type = cp_lookup_nested_type (type, ncopy,
959 if (new_type == NULL)
963 $$ = new_type;
HDc-exp.c2345 struct type *new_type; local
2357 new_type = cp_lookup_nested_type (type, ncopy,
2359 if (new_type == NULL)
2363 yyval.tval = new_type;
HDvarobj.c1639 char *old_type, *new_type; in value_of_root() local
1647 new_type = varobj_get_type (tmp_var); in value_of_root()
1648 if (strcmp (old_type, new_type) == 0) in value_of_root()
HDvalue.h345 struct type *new_type);
HDada-lang.c1185 struct type *new_type; in packed_array_type() local
1192 new_type = alloc_type (TYPE_OBJFILE (type)); in packed_array_type()
1195 create_array_type (new_type, new_elt_type, TYPE_FIELD_TYPE (type, 0)); in packed_array_type()
1196 TYPE_FIELD_BITSIZE (new_type, 0) = *elt_bits; in packed_array_type()
1197 TYPE_NAME (new_type) = ada_type_name (type); in packed_array_type()
1203 *elt_bits = TYPE_LENGTH (new_type) = 0; in packed_array_type()
1207 TYPE_LENGTH (new_type) = in packed_array_type()
1213 return new_type; in packed_array_type()
HDmdebugread.c287 static struct type *new_type (char *);
1050 t = new_type (NULL); in parse_symbol()
4711 new_type (char *name) in new_type() function
/NextBSD/usr.bin/rpcgen/
HDrpc_parse.c385 check_type_name(const char *name, int new_type) in check_type_name() argument
398 if (new_type) { in check_type_name()
/NextBSD/sys/sys/
HDmbuf.h769 m_chtype(struct mbuf *m, short new_type) in m_chtype() argument
772 m->m_type = new_type; in m_chtype()
/NextBSD/contrib/gcc/
HDtree-inline.c538 tree new_type = remap_type (TREE_TYPE (*tp), id); in copy_body_r() local
540 if (new_type == TREE_TYPE (*tp)) in copy_body_r()
544 *tp = build_int_cst_wide (new_type, TREE_INT_CST_LOW (*tp), in copy_body_r()
549 TREE_TYPE (*tp) = new_type; in copy_body_r()
HDtree-ssa-alias.c2187 tree new_type; in create_tag_raw() local
2190 new_type = build_type_variant (type, 0, 0); in create_tag_raw()
2191 TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type); in create_tag_raw()
HDgimplify.c447 tree new_type; in create_tmp_var_raw() local
450 new_type = build_type_variant (type, 0, 0); in create_tmp_var_raw()
451 TYPE_ATTRIBUTES (new_type) = TYPE_ATTRIBUTES (type); in create_tmp_var_raw()
HDc-common.c5469 tree type = *node, new_type, size; in handle_vector_size_attribute() local
5532 new_type = build_vector_type (type, nunits); in handle_vector_size_attribute()
5535 *node = reconstruct_complex_type (*node, new_type); in handle_vector_size_attribute()