Lines Matching refs:dif
307 diff_sptr dif = *i; in report() local
308 if (diff_to_be_reported(dif.get())) in report()
309 dif->report(out, indent); in report()
331 for (diff_sptrs_type::const_iterator dif = d.changed_types().begin(); in report() local
332 dif != d.changed_types().end(); in report()
333 ++dif) in report()
335 if (!*dif || !diff_to_be_reported((*dif).get())) in report()
339 << (*dif)->first_subject()->get_pretty_representation() in report()
341 (*dif)->report(out, indent + " "); in report()
349 for (diff_sptrs_type::const_iterator dif= d.changed_decls().begin(); in report() local
350 dif != d.changed_decls().end (); in report()
351 ++dif) in report()
353 if (!*dif || !diff_to_be_reported((*dif).get())) in report()
357 << (*dif)->first_subject()->get_pretty_representation() in report()
359 << (*dif)->second_subject()->get_pretty_representation() << "'"; in report()
360 report_loc_info((*dif)->second_subject(), *d.context(), out); in report()
363 (*dif)->report(out, indent + " "); in report()
455 diff_sptr dif = d.element_type_diff(); in report() local
456 if (diff_to_be_reported(dif.get())) in report()
458 string fn = ir::get_pretty_representation(is_type(dif->first_subject())); in report()
462 dif->report(out, indent + " "); in report()
957 if (diff_sptr dif = d.type_diff()) in report() local
959 if (diff_to_be_reported(dif.get())) in report()
961 RETURN_IF_BEING_REPORTED_OR_WAS_REPORTED_EARLIER2(dif, "type"); in report()
963 dif->report(out, indent + " "); in report()