Home
last modified time | relevance | path

Searched refs:template_args (Results 1 – 23 of 23) sorted by relevance

/external/angle/src/compiler/translator/
Dgen_builtin_symbols.py1517 def define_constexpr_type_array_sizes(template_args, type_array_sizes_declarations): argument
1519 type_array_sizes_declarations.add(template_array_sizes_declaration.format(**template_args))
1522 def define_constexpr_variable(template_args, variable_declarations): argument
1523 template_args['extension'] = get_extension_list(template_args['extension'])
1526 variable_declarations.append(template_variable_declaration.format(**template_args))
1621 template_args = {
1638 name_declaration = template_name_declaration.format(**template_args)
1642 essl_ext = '{essl_extension}'.format(**template_args)
1643 glsl_ext = '{glsl_extension}'.format(**template_args)
1664 extension_string = get_extension_list(template_args['extension'])
[all …]
/external/tensorflow/tensorflow/lite/delegates/gpu/common/task/
Dbuffer_desc.cc45 const std::vector<std::string>& template_args, std::string* result) const { in PerformSelector() argument
49 return PerformGetPtrSelector(args, template_args, result); in PerformSelector()
69 const std::vector<std::string>& template_args, std::string* result) const { in PerformGetPtrSelector() argument
75 if (template_args.size() > 1) { in PerformGetPtrSelector()
79 template_args.size(), " was passed")); in PerformGetPtrSelector()
82 if (template_args.size() == 1) { in PerformGetPtrSelector()
84 if (type_name != template_args[0]) { in PerformGetPtrSelector()
86 template_args[0], "*)&"); in PerformGetPtrSelector()
Dbuffer_desc.h48 const std::vector<std::string>& template_args,
56 const std::vector<std::string>& template_args, std::string* result) const;
Dtexture2d_desc.h47 const std::vector<std::string>& template_args,
Dtensor_linear_desc.h54 const std::vector<std::string>& template_args,
Dtensor_desc.h65 const std::vector<std::string>& template_args,
109 const std::vector<std::string>& template_args, std::string* result) const;
Dtexture2d_desc.cc37 const std::vector<std::string>& template_args, std::string* result) const { in PerformSelector() argument
Dtensor_desc.cc169 const std::vector<std::string>& template_args, std::string* result) const { in PerformSelector() argument
204 return PerformReadSelector(gpu_info, args, template_args, result); in PerformSelector()
227 const std::vector<std::string>& template_args, std::string* result) const { in PerformReadSelector() argument
229 if (!template_args.empty()) { in PerformReadSelector()
230 if (template_args.size() != 1) { in PerformReadSelector()
235 GetDataTypeFromTemplateArgs(template_args[0], &read_as_type)); in PerformReadSelector()
Dtensor_linear_desc.cc51 const std::vector<std::string>& template_args, std::string* result) const { in PerformSelector() argument
Dgpu_object_desc.h123 const std::vector<std::string>& template_args, in PerformSelector() argument
/external/googletest/googlemock/scripts/generator/cpp/
Dgmock_class.py65 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) + '>'
/external/rust/crates/bindgen/src/ir/
Dtemplate.rs227 let template_args = ty.template_args().map_or(vec![], |args| match ty in from_ty() localVariable
229 .template_args() in from_ty()
288 template_args, in from_ty()
Dty.rs792 (ty.template_args().is_some() && ty_kind != CXType_Typedef) in from_clang_ty()
Dcomp.rs1232 ty.template_args().is_none(), in from_ty()
/external/llvm-project/lldb/bindings/interface/
DSBType.i330 template_args = []
332 template_args.append(self.GetTemplateArgumentType(i))
333 return template_args
346template_args = property(template_arg_array, None, doc='''A read only property that returns a list…
/external/oss-fuzz/infra/
Dhelper.py946 template_args = {
951 file_handle.write(templates.PROJECT_YAML_TEMPLATE % template_args)
954 file_handle.write(templates.DOCKER_TEMPLATE % template_args)
958 file_handle.write(templates.BUILD_TEMPLATE % template_args)
/external/tensorflow/tensorflow/lite/delegates/gpu/cl/
Dcl_arguments.cc291 std::vector<std::string> template_args; in ResolveSelectorsPass() local
295 *code, next_position, &close_bracket_pos, &template_args)); in ResolveSelectorsPass()
313 template_args, &patch)); in ResolveSelectorsPass()
338 const std::vector<std::string>& template_args, std::string* result) { in ResolveSelector() argument
378 template_args, &patch)); in ResolveSelector()
Dcl_arguments.h77 const std::vector<std::string>& template_args, std::string* result);
/external/tensorflow/tensorflow/lite/delegates/gpu/metal/
Dmetal_arguments.cc683 std::vector<std::string> template_args; in ResolveSelectorsPass() local
687 *code, next_position, &close_bracket_pos, &template_args)); in ResolveSelectorsPass()
705 template_args, &patch)); in ResolveSelectorsPass()
721 const std::vector<std::string>& template_args, std::string* result) { in ResolveSelector() argument
761 template_args, &patch)); in ResolveSelector()
Dmetal_arguments.h110 const std::vector<std::string>& template_args, std::string* result);
/external/rust/crates/bindgen/src/
Dclang.rs1129 pub fn template_args(&self) -> Option<TypeTemplateArgIterator> { in template_args() method
1267 self.template_args().map_or(false, |args| args.len() > 0) && in is_fully_instantiated_template()
/external/rust/crates/bindgen/src/codegen/
Dmod.rs3712 let template_args = self in try_to_rust_ty() localVariable
3727 if template_args.is_empty() { in try_to_rust_ty()
3732 #ty < #( #template_args ),* > in try_to_rust_ty()
/external/swiftshader/third_party/llvm-subzero/lib/Demangle/
DItaniumDemangle.cpp1890 auto template_args = db.names.back().move_full(); in parse_type() local
1892 db.names.back().first += template_args; in parse_type()