Lines Matching refs:fe
26 #include "abg-fe-iface.h"
4476 /// @param fe the front-end to consider.
4482 /// front-end @p fe.
4484 suppression_can_match(const fe_iface& fe,
4487 if (!s.priv_->matches_soname(fe.dt_soname()))
4494 if (!s.priv_->matches_binary_name(fe.corpus_path()))
4507 /// @param fe the front-end to consider.
4516 suppression_matches_function_name(const fe_iface& fe,
4520 if (!suppression_can_match(fe, s))
4547 /// @param fe the front-end to consider.
4557 suppression_matches_function_sym_name(const fe_iface& fe,
4561 if (!suppression_can_match(fe, s))
4588 /// @param fe the front-end to consider.
4597 suppression_matches_variable_name(const fe_iface& fe,
4601 if (!suppression_can_match(fe, s))
4610 /// @param fe the front-end to consider.
4620 suppression_matches_variable_sym_name(const fe_iface& fe,
4624 if (!suppression_can_match(fe, s))
4633 /// @param fe the front-end to consider.
4645 suppression_matches_type_name_or_location(const fe_iface& fe,
4650 if (!suppression_can_match(fe, s))
4664 /// @param fe the front-end to consider.
4669 /// suppression specification associated with the front-end @p fe.
4671 is_elf_symbol_suppressed(const fe_iface& fe,
4675 return is_function_suppressed(fe, /*fn_name=*/"",
4678 return is_variable_suppressed(fe, /*var_name=*/"",
4690 /// @param fe the front-end to consider.
4696 /// associated with the front-end @p fe.
4698 is_elf_symbol_suppressed(const fe_iface& fe,
4703 return is_function_suppressed(fe, /*fn_name=*/"",
4706 return is_variable_suppressed(fe, /*var_name=*/"",
4716 /// @param fe the front-end to consider.
4730 is_function_suppressed(const fe_iface& fe,
4735 for (auto i : fe.suppressions())
4741 && suppression_matches_function_name(fe, *suppr, fn_name))
4744 && suppression_matches_function_sym_name(fe, *suppr,
4756 /// @param fe the front-end to consider.
4770 is_variable_suppressed(const fe_iface& fe,
4775 for (auto i : fe.suppressions())
4781 && suppression_matches_variable_name(fe, *suppr, var_name))
4784 && suppression_matches_variable_sym_name(fe, *suppr,
4796 /// @param fe the front-end to consider.
4813 is_type_suppressed(const fe_iface& fe,
4819 for (auto i : fe.suppressions())
4824 if (suppression_matches_type_name_or_location(fe, *suppr,