Home
last modified time | relevance | path

Searched refs:union_type (Results 1 – 15 of 15) sorted by relevance

/third_party/node/deps/v8/src/torque/
Dtype-visitor.cc378 } else if (auto* union_type = in ComputeType() local
380 return TypeOracle::GetUnionType(ComputeType(union_type->a), in ComputeType()
381 ComputeType(union_type->b)); in ComputeType()
Dtypes.h450 if (const UnionType* union_type = UnionType::DynamicCast(t)) { in Extend() local
451 for (const Type* member : union_type->types_) { in Extend()
467 const UnionType* union_type = UnionType::DynamicCast(t); in FromType() local
468 return union_type ? UnionType(*union_type) : UnionType(t); in FromType()
Dtorque-parser.cc1435 TypeExpression* union_type = nullptr; in MakeEnumDeclaration() local
1445 if (union_type) { in MakeEnumDeclaration()
1446 union_type = MakeNode<UnionTypeExpression>(union_type, entry_type); in MakeEnumDeclaration()
1448 union_type = entry_type; in MakeEnumDeclaration()
1455 MakeNode<TypeAliasDeclaration>(name_identifier, union_type)); in MakeEnumDeclaration()
Dtypes.cc93 if (const UnionType* union_type = UnionType::DynamicCast(supertype)) { in IsSubtypeOf() local
94 return union_type->IsSupertypeOf(this); in IsSubtypeOf()
/third_party/libffi/doc/
Dlibffi.info509 ffi_type union_type;
517 union_type.size = union_type.alignment = 0;
518 union_type.type = FFI_TYPE_STRUCT;
519 union_type.elements = element_types;
526 if (union_elements[i]->size > union_type.size)
528 union_type.size = union_elements[i];
531 if (union_elements[i]->alignment > union_type.alignment)
532 union_type.alignment = union_elements[i]->alignment;
Dlibffi.texi552 ffi_type union_type;
560 union_type.size = union_type.alignment = 0;
561 union_type.type = FFI_TYPE_STRUCT;
562 union_type.elements = element_types;
569 if (union_elements[i]->size > union_type.size)
571 union_type.size = union_elements[i];
574 if (union_elements[i]->alignment > union_type.alignment)
575 union_type.alignment = union_elements[i]->alignment;
/third_party/node/deps/v8/src/compiler/
Dtypes.cc1162 const UnionType* union_type = AsUnion(); in AllocateOnHeap() local
1163 Handle<TurbofanType> result = union_type->Get(0).AllocateOnHeap(factory); in AllocateOnHeap()
1164 for (int i = 1; i < union_type->Length(); ++i) { in AllocateOnHeap()
1166 result, union_type->Get(i).AllocateOnHeap(factory), in AllocateOnHeap()
/third_party/libabigail/src/
Dabg-corpus-priv.h784 maybe_update_types_lookup_map(const union_decl_sptr& union_type);
Dabg-dwarf-reader.cc5778 union_decl_sptr union_type,
13127 union_decl_sptr union_type, in add_or_update_union_type() argument
13201 union_type = pre_existing_union; in add_or_update_union_type()
13207 if (union_type) in add_or_update_union_type()
13209 result = union_type; in add_or_update_union_type()
15364 union_decl_sptr union_type = in build_ir_node_from_die() local
15370 if (union_type) in build_ir_node_from_die()
15372 maybe_set_member_type_access_specifier(union_type, die); in build_ir_node_from_die()
15373 maybe_canonicalize_type(union_type, rdr); in build_ir_node_from_die()
15375 result = union_type; in build_ir_node_from_die()
Dabg-ir.cc13316 maybe_update_types_lookup_map(const union_decl_sptr& union_type) in maybe_update_types_lookup_map() argument
13318 if (translation_unit *tu = union_type->get_translation_unit()) in maybe_update_types_lookup_map()
13320 (union_type, tu->get_types().union_types()); in maybe_update_types_lookup_map()
13322 if (corpus *type_corpus = union_type->get_corpus()) in maybe_update_types_lookup_map()
13325 (union_type, in maybe_update_types_lookup_map()
13329 (union_type, in maybe_update_types_lookup_map()
13336 (union_type, in maybe_update_types_lookup_map()
13340 (union_type, in maybe_update_types_lookup_map()
13675 else if (union_decl_sptr union_type = is_union_type(decl)) in maybe_update_types_lookup_map() local
13676 maybe_update_types_lookup_map(union_type); in maybe_update_types_lookup_map()
[all …]
Dabg-reader.cc4593 union_decl_sptr union_type; in build_union_decl_if_not_suppressed() local
4595 union_type = build_union_decl(rdr, node, add_to_current_scope); in build_union_decl_if_not_suppressed()
4596 return union_type; in build_union_decl_if_not_suppressed()
Dabg-writer.cc2024 union_decl_sptr union_type(u, noop_deleter()); in write_decl_in_scope() local
2025 write_union_decl_opening_tag(union_type, "", ctxt, indent, in write_decl_in_scope()
/third_party/libabigail/include/
Dabg-ir.h4392 copy_member_function(const union_decl_sptr& union_type,
4396 copy_member_function(const union_decl_sptr& union_type,
/third_party/node/test/fixtures/wpt/resources/webidl2/lib/
Dwebidl2.js1138 function union_type(tokeniser, type) { function
1175 return single_type(tokeniser, typeName) || union_type(tokeniser, typeName);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DDwarf.def143 HANDLE_DW_TAG(0x0017, union_type, 2, DWARF, DW_KIND_TYPE)