Home
last modified time | relevance | path

Searched refs:fn_type (Results 1 – 10 of 10) sorted by relevance

/third_party/libabigail/src/
Dabg-reader.cc474 else if (function_type_sptr fn_type = is_function_type(type)) in type_is_from_translation_unit() local
475 return bool(lookup_function_type(fn_type, *get_translation_unit())); in type_is_from_translation_unit()
700 record_artifacts_as_used_in_fn_type(const function_type *fn_type) in record_artifacts_as_used_in_fn_type() argument
702 if (!fn_type) in record_artifacts_as_used_in_fn_type()
705 type_base_sptr t = fn_type->get_return_type(); in record_artifacts_as_used_in_fn_type()
706 record_artifact_as_used_by(t.get(), const_cast<function_type*>(fn_type)); in record_artifacts_as_used_in_fn_type()
708 for (auto pit : fn_type->get_parameters()) in record_artifacts_as_used_in_fn_type()
712 const_cast<function_type*>(fn_type)); in record_artifacts_as_used_in_fn_type()
720 record_artifacts_as_used_in_fn_type(const function_type_sptr& fn_type) in record_artifacts_as_used_in_fn_type() argument
721 {record_artifacts_as_used_in_fn_type(fn_type.get());} in record_artifacts_as_used_in_fn_type()
[all …]
Dabg-writer.cc2339 function_type_sptr fn_type(f, noop_deleter()); in write_referenced_types() local
2340 write_function_type(fn_type, ctxt, in write_referenced_types()
2481 function_type_sptr fn_type = is_function_type(*i); in write_translation_unit() local
2483 if (fn_type->get_is_artificial() || ctxt.type_is_emitted(fn_type)) in write_translation_unit()
2489 ABG_ASSERT(fn_type); in write_translation_unit()
2490 write_function_type(fn_type, ctxt, indent + c.get_xml_element_indent()); in write_translation_unit()
3434 write_function_type(const function_type_sptr& fn_type, in write_function_type() argument
3437 if (!fn_type) in write_function_type()
3442 annotate(fn_type, ctxt, indent); in write_function_type()
3448 write_size_and_alignment(fn_type, o, in write_function_type()
[all …]
Dabg-ir.cc8587 const function_type* fn_type = is_function_type(t); in get_type_name() local
8588 ABG_ASSERT(fn_type); in get_type_name()
8589 return fn_type->get_cached_name(internal); in get_type_name()
8746 get_function_type_name(const function_type_sptr& fn_type, in get_function_type_name() argument
8748 {return get_function_type_name(fn_type.get(), internal);} in get_function_type_name()
8761 get_function_type_name(const function_type* fn_type, in get_function_type_name() argument
8764 ABG_ASSERT(fn_type); in get_function_type_name()
8766 if (const method_type* method = is_method_type(fn_type)) in get_function_type_name()
8769 return get_function_type_name(*fn_type, internal); in get_function_type_name()
8783 get_function_type_name(const function_type& fn_type, in get_function_type_name() argument
[all …]
Dabg-dwarf-reader.cc3475 const function_type_sptr &fn_type) in associate_die_repr_to_fn_type_per_tu() argument
3484 per_tu_repr_to_fn_type_maps()[repr]= fn_type; in associate_die_repr_to_fn_type_per_tu()
13761 function_type_sptr fn_type = is_function_type(i->second); in build_function_type() local
13762 ABG_ASSERT(fn_type); in build_function_type()
13763 return fn_type; in build_function_type()
13793 if (function_type_sptr fn_type = in build_function_type() local
13796 rdr.associate_die_to_type(die, fn_type, where_offset); in build_function_type()
13797 return fn_type; in build_function_type()
14920 function_type_sptr fn_type(build_function_type(rdr, die, is_method, in build_function_decl() local
14922 if (!fn_type) in build_function_decl()
[all …]
Dabg-suppression.cc2721 function_type_sptr fn_type = fn->get_type(); in suppresses_function() local
2731 fn_type->get_parm_at_index_from_first_non_implicit_parm(index); in suppresses_function()
/third_party/skia/third_party/externals/jinja2/
Druntime.py273 for fn_type in (
278 if hasattr(fn, fn_type):
/third_party/node/tools/inspector_protocol/jinja2/
Druntime.py247 for fn_type in ('contextfunction',
250 if hasattr(fn, fn_type):
/third_party/node/deps/v8/third_party/jinja2/
Druntime.py273 for fn_type in (
278 if hasattr(fn, fn_type):
/third_party/libabigail/include/
Dabg-ir.h784 synthesize_function_type_from_translation_unit(const function_type& fn_type,
3022 type_base_sptr fn_type,
3058 set_type(const function_type_sptr& fn_type);
3407 get_method_type_name(const method_type& fn_type, bool internal);
3822 set_type(const method_type_sptr fn_type) in set_type() argument
3823 {function_decl::set_type(fn_type);} in set_type()
/third_party/skia/src/core/
DSkVM.cpp2637 llvm::FunctionType* fn_type = llvm::FunctionType::get(llvm::Type::getVoidTy(*ctx), in setupLLVM() local
2640 = llvm::Function::Create(fn_type, llvm::GlobalValue::ExternalLinkage, debug_name, *mod); in setupLLVM()