Searched refs:template_args (Results 1 – 9 of 9) sorted by relevance
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | gen_builtin_symbols.py | 810 def define_constexpr_variable(template_args, variable_declarations): argument 812 variable_declarations.append(template_variable_declaration.format(**template_args)) 878 template_args = { 890 name_declaration = template_name_declaration.format(**template_args) 898 unmangled_if = template_unmangled_if.format(**template_args) 914 **template_args)) 917 template_args['id'] = id_counter 921 template_args['unique_name'] = get_unique_identifier_name( 922 template_args['name_with_suffix'], parameters) 924 if template_args['unique_name'] in defined_function_variants: [all …]
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | gen_builtin_symbols.py | 1522 def define_constexpr_type_array_sizes(template_args, type_array_sizes_declarations): argument 1524 type_array_sizes_declarations.add(template_array_sizes_declaration.format(**template_args)) 1527 def define_constexpr_variable(template_args, variable_declarations): argument 1528 template_args['extension'] = get_extension_list(template_args['extension']) 1531 variable_declarations.append(template_variable_declaration.format(**template_args)) 1626 template_args = { 1643 name_declaration = template_name_declaration.format(**template_args) 1647 essl_ext = '{essl_extension}'.format(**template_args) 1648 glsl_ext = '{glsl_extension}'.format(**template_args) 1669 extension_string = get_extension_list(template_args['extension']) [all …]
|
/third_party/googletest/googlemock/scripts/generator/cpp/ |
D | gmock_class.py | 65 template_args = [] 68 template_args.append(rendered_arg) 69 return_type += '<' + ', '.join(template_args) + '>' 169 template_args = class_node.templated_types.keys() 170 template_decls = ['typename ' + arg for arg in template_args] 172 parent_name += '<' + ', '.join(template_args) + '>'
|
/third_party/rust/crates/bindgen/bindgen/ir/ |
D | template.rs | 226 let template_args = ty.template_args().map_or(vec![], |args| match ty in from_ty() localVariable 228 .template_args() in from_ty() 287 template_args, in from_ty()
|
D | ty.rs | 763 (ty.template_args().is_some() && ty_kind != CXType_Typedef) in from_clang_ty()
|
D | comp.rs | 1255 ty.template_args().is_none(), in from_ty()
|
/third_party/rust/crates/bindgen/bindgen/ |
D | clang.rs | 1278 pub fn template_args(&self) -> Option<TypeTemplateArgIterator> { in template_args() method 1416 self.template_args().map_or(false, |args| args.len() > 0) && in is_fully_instantiated_template()
|
/third_party/rust/crates/bindgen/bindgen/codegen/ |
D | mod.rs | 3950 let template_args = self in try_to_rust_ty() localVariable 3965 if template_args.is_empty() { in try_to_rust_ty() 3970 #ty < #( #template_args ),* > in try_to_rust_ty()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Demangle/ |
D | ItaniumDemangle.cpp | 1890 auto template_args = db.names.back().move_full(); in parse_type() local 1892 db.names.back().first += template_args; in parse_type()
|