Searched refs:type_alias (Results 1 – 13 of 13) sorted by relevance
/external/llvm-project/clang/test/AST/ |
D | deduction-guides.cpp | 44 using type_alias = A; typedef 48 using type_alias = typename Derived::type_alias; typedef 49 Derived(Derived &&, typename Derived::type_alias const&);
|
/external/llvm-project/clang/test/Misc/ |
D | pragma-attribute-cxx.cpp | 10 …bute__((annotate("test"))), apply_to=any(record, field, variable, function, namespace, type_alias)) 30 …te__((annotate("method"))), apply_to=any(record, field, variable, function, namespace, type_alias))
|
/external/llvm/test/CodeGen/MIR/X86/ |
D | generic-virtual-registers.mir | 9 %type_alias = type <2 x i32> 41 %2(64) = G_ADD %type_alias %edi, %edi
|
/external/llvm-project/llvm/test/CodeGen/MIR/X86/ |
D | generic-instr-type.mir | 6 %type_alias = type <2 x i32>
|
/external/rust/crates/bindgen/src/ |
D | options.rs | 580 if let Some(type_alias) = matches.values_of("normal-alias") { in builder_from_flags() 581 for regex in type_alias { in builder_from_flags() 582 builder = builder.type_alias(regex); in builder_from_flags()
|
D | lib.rs | 304 (&self.options.type_alias, "--type-alias"), in command_line_flags() 998 pub fn type_alias<T: AsRef<str>>(mut self, arg: T) -> Builder { in type_alias() method 999 self.options.type_alias.insert(arg); in type_alias() 1670 type_alias: RegexSet, field 1925 &mut self.type_alias, in build() 1978 type_alias: Default::default(), in default()
|
/external/python/pybind11/tests/ |
D | test_class.cpp | 501 …ert(DoesntBreak##N::has_alias && std::is_same<typename DoesntBreak##N::type_alias, BreaksTramp<N>>… 503 …ic_assert(!DoesntBreak##N::has_alias && std::is_void<typename DoesntBreak##N::type_alias>::value, \
|
/external/python/pybind11/include/pybind11/ |
D | pybind11.h | 1253 using type_alias = detail::exactly_one_t<is_subtype, void, options...>; 1254 constexpr static bool has_alias = !std::is_void<type_alias>::value; 1281 record.type_size = sizeof(conditional_t<has_alias, type_alias, type>); 1282 record.type_align = alignof(conditional_t<has_alias, type_alias, type>&); 1300 … instances[std::type_index(typeid(type_alias))] = instances[std::type_index(typeid(type))];
|
/external/python/pybind11/include/pybind11/detail/ |
D | init.h | 41 template <typename Class> using Alias = typename Class::type_alias;
|
/external/llvm-project/mlir/test/IR/ |
D | parser.mlir | 829 // CHECK-LABEL: func @type_alias() -> i32 { 831 func @type_alias() -> !i32_type_alias {
|
/external/rust/crates/bindgen/src/codegen/ |
D | mod.rs | 868 let alias_style = if ctx.options().type_alias.matches(&name) { in codegen()
|
/external/llvm-project/clang/include/clang/Basic/ |
D | Attr.td | 435 def SubjectMatcherForTypedef : AttrSubjectMatcherRule<"type_alias",
|
/external/llvm-project/clang/docs/ |
D | LanguageExtensions.rst | 3409 - ``type_alias``: Can be used to apply attributes to ``typedef`` declarations
|