Searched refs:type_alias (Results 1 – 12 of 12) sorted by relevance
/third_party/skia/third_party/externals/tint/src/reader/wgsl/ |
D | parser_impl_type_alias_test.cc | 25 auto t = p->type_alias(); in TEST_F() 40 auto t = p->type_alias(); in TEST_F() 54 auto t = p->type_alias(); in TEST_F() 64 auto t = p->type_alias(); in TEST_F() 74 auto t = p->type_alias(); in TEST_F()
|
D | parser_impl.h | 417 Maybe<const ast::Alias*> type_alias();
|
D | parser_impl.cc | 390 auto ta = type_alias(); in expect_global_decl() 976 Maybe<const ast::Alias*> ParserImpl::type_alias() { in type_alias() function in tint::reader::wgsl::ParserImpl
|
/third_party/rust/crates/bindgen/bindgen/ |
D | lib.rs | 363 (&self.options.type_alias, "--type-alias"), in command_line_flags() 1109 pub fn type_alias<T: AsRef<str>>(mut self, arg: T) -> Builder { 1110 self.options.type_alias.insert(arg); 1916 type_alias: RegexSet, field 2203 &mut self.type_alias, in build() 2316 type_alias, in default()
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_parser.cpp | 702 type.type_alias = other; in parse() 707 if (type.type_alias == TypeID(0)) in parse()
|
D | spirv_cpp.cpp | 147 self.type_alias = 0; in emit_block_struct()
|
D | spirv_glsl.cpp | 1103 if (type.type_alias != TypeID(0) && in emit_struct() 1104 !has_extended_decoration(type.type_alias, SPIRVCrossDecorationBufferBlockRepacked)) in emit_struct() 2406 if (parent_type->type_alias) in emit_flattened_io_block_member() 2407 parent_type = &get<SPIRType>(parent_type->type_alias); in emit_flattened_io_block_member() 2458 auto &type = var_type.type_alias ? get<SPIRType>(var_type.type_alias) : var_type; in emit_flattened_io_block() 12721 if (type.type_alias != TypeID(0) && in to_member_name() 12722 !has_extended_decoration(type.type_alias, SPIRVCrossDecorationBufferBlockRepacked)) in to_member_name() 12724 return to_member_name(get<SPIRType>(type.type_alias), index); in to_member_name() 15567 if (!type.type_alias) in fixup_type_alias() 15573 type.type_alias = 0; in fixup_type_alias() [all …]
|
D | spirv_common.hpp | 592 TypeID type_alias = 0; member
|
D | spirv_cross.cpp | 201 if (type.type_alias) in to_name() 205 if (!has_extended_decoration(type.type_alias, SPIRVCrossDecorationBufferBlockRepacked)) in to_name() 206 return to_name(type.type_alias); in to_name()
|
D | spirv_msl.cpp | 1930 if (mbr_type.type_alias) in mark_as_packable() 1932 auto &mbr_type_alias = get<SPIRType>(mbr_type.type_alias); in mark_as_packable() 3689 pcp_type.parent_type = pcp_type.type_alias = get_stage_in_struct_type().self; in add_interface_block() 3714 ib_ptr_type.parent_type = ib_ptr_type.type_alias = ib_type.self; in add_interface_block_pointer() 3727 ib_ptr_ptr_type.type_alias = ib_type.self; in add_interface_block_pointer() 3746 pcp_type.parent_type = pcp_type.type_alias = ib_type.self; in add_interface_block_pointer()
|
/third_party/rust/crates/bindgen/bindgen-cli/ |
D | options.rs | 559 builder = builder.type_alias(regex); in builder_from_flags()
|
/third_party/rust/crates/bindgen/bindgen/codegen/ |
D | mod.rs | 948 let alias_style = if ctx.options().type_alias.matches(&name) { in codegen()
|