Lines Matching refs:out

37 /// @param out the output stream to emit the numerical value to.
39 emit_num_value(uint64_t value, const diff_context& ctxt, ostream& out)
42 out << std::hex << std::showbase ;
44 out << std::dec;
45 out << value << std::dec << std::noshowbase;
90 /// @param out the output stream to send the change message to.
100 ostream& out,
115 out << what << " changed from ";
116 emit_num_value(o, ctxt, out);
117 out << " to ";
118 emit_num_value(n, ctxt, out);
121 out << " (in ";
122 out << bits_or_bytes;
123 out << ")";
137 /// @param out the output stream to emit the message to.
142 ostream& out)
154 out << what << " ";
155 emit_num_value(v, ctxt, out);
156 out << " (in " << bits_or_bytes << ")";
167 /// @param out the output stream to emit the message to.
171 ostream& out)
172 {show_offset_or_size("", value, ctxt, out);}
180 /// @param out the output stream to send the representation to
184 ostream& out)
193 out << "'" << mem_fn->get_pretty_representation() << "'";
194 report_loc_info(meth, ctxt, out);
204 out << ", virtual at voffset ";
206 ctxt, out);
207 out << "/";
208 emit_num_value(biggest_voffset, ctxt, out);
215 out << " {"
219 out << "\n";
228 /// @param out the output stream to send the representation to
234 ostream& out,
241 out << indent
254 *ctxt, out);
255 report_loc_info(d, *ctxt, out);
257 out << "\n";
277 /// @param out the output stream to emit the string to.
281 ostream& out)
314 out << " (by " << sign;
315 emit_num_value(change, ctxt, out);
316 out << " " << bits_or_bytes << ")";
336 /// @param out the output stream to emit the string to.
340 ostream& out)
373 out << " (by " << sign;
374 emit_num_value(change, ctxt, out);
375 out << " " << bits_or_bytes << ")";
387 /// @param out the output stream to send the representation to.
393 ostream& out,
446 o_offset, *ctxt, out);
448 out << " changed from:\n"
461 out << indent << "while looking at anonymous data member '"
484 out << indent << (o_anon ? "anonymous " : "")
486 show_offset_or_size(" at offset", o_offset, *ctxt, out);
487 out << " became " << (n_anon ? "anonymous " : "")
508 out << indent << "type '"
516 out << indent
521 out << ", as being reported\n";
523 out << ", as reported earlier\n";
526 out << ":\n";
527 d->report(out, indent + " ");
551 out << indent << "and ";
555 out << indent;
557 out << ", ";
558 out << "name of '" << o_name << "' changed to '" << n_name << "'";
559 report_loc_info(n, *ctxt, out);
569 out << indent << "and ";
573 out << indent << "'" << o_pretty_representation << "' ";
575 out << ", ";
577 out << "is no more laid out";
579 out << "now becomes laid out";
588 out << indent << "and ";
593 out << indent;
595 out << "anonymous data member ";
596 out << "'" << o_pretty_representation << "' ";
599 out << ", ";
601 show_numerical_change("offset", o_offset, n_offset, *ctxt, out);
602 maybe_show_relative_offset_change(diff, *ctxt, out);
610 out << indent << "and ";
615 out << indent;
617 out << "anonymous data member ";
618 out << "'" << o_pretty_representation << "' ";
621 out << ", ";
623 show_numerical_change("size", o_size, n_size, *ctxt, out);
624 maybe_show_relative_size_change(diff, *ctxt, out);
632 out << indent << "and ";
636 out << indent << "'" << o_pretty_representation << "' ";
638 out << ", ";
639 out << "elf binding changed from " << o->get_binding()
647 out << indent << "and ";
651 out << indent << "'" << o_pretty_representation << "' ";
653 out << ", ";
654 out << "visibility changed from " << o->get_visibility()
664 out << indent << "and ";
668 out << indent << "'" << o_pretty_representation << "' ";
670 out << ", ";
672 out << "access changed from '"
683 out << indent << "and ";
687 out << indent << "'" << o_pretty_representation << "' ";
689 out << ", ";
692 out << "is no more static";
694 out << "now becomes static";
703 out << indent << "'" << o_pretty_representation
712 out << "\n";
723 /// @param out the output stream to report the change to.
730 ostream& out,
764 out << indent << "array type size changed from ";
766 out << "infinity";
768 emit_num_value(first_array->get_size_in_bits(), *ctxt, out);
769 out << " to ";
771 out << "infinity";
773 emit_num_value(second_array->get_size_in_bits(), *ctxt, out);
774 out << "\n";
778 out << indent + " "
794 out << indent
800 out << "infinity";
802 out << (*i)->get_length();
804 out << " to ";
807 out << "infinity";
809 out << (*j)->get_length();
810 out << "\n";
816 out << indent;
817 show_numerical_change("type size", fs, ss, *ctxt, out);
818 out << "\n";
824 out << indent << "type size hasn't changed\n";
830 out << indent;
831 show_numerical_change("type alignment", fa, sa, *ctxt, out,
833 out << "\n";
841 /// @param out the output stream to report the change to.
847 ostream &out)
869 out << " at " << path << ":" << line << ":" << column;
884 /// @param out the output stream to report the change to.
891 ostream& out,
906 out << indent;
908 out << "type";
910 out << "declaration";
911 out << " name changed from '" << fn << "' to '" << sn << "'";
912 out << "\n";
916 report_size_and_alignment_changes(first, second, ctxt, out, indent);
923 /// @param out the output stream to output the report to.
939 report_mem_header(ostream& out,
966 out << indent << "no " << section_name << " " << change;
970 out << indent << "1 " << section_name << " " << change;
972 out << indent << net_number << " " << section_name
976 out << " (" << num_filtered << " filtered)";
977 out << colon_or_semi_colon << "\n";
984 /// @param out the output stream to output the report to.
995 report_mem_header(ostream& out,
1016 out << indent << "there are " << section_name << " " << change << ":\n";
1026 /// @param out the output stream to send the report to.
1035 ostream& out,
1049 out << indent << "'" << decl1_repr << "' ";
1050 if (report_loc_info(decl2, *ctxt, out))
1051 out << " ";
1053 out << "became non-static";
1055 out << "became static";
1056 out << "\n";
1063 out << indent << "'" << decl1_repr << "' access changed from '"
1088 ostream& out,
1096 out << indent;
1100 *ctxt, out,
1102 out << "\n";
1107 out << indent << "symbol name changed from "
1116 out << indent << "symbol type changed from '"
1125 out << indent << "symbol became ";
1127 out << "exported";
1129 out << "non-exported";
1130 out << "\n";
1135 out << indent << "symbol became ";
1137 out << "defined";
1139 out << "undefined";
1140 out << "\n";
1145 out << indent << "symbol version changed from "
1157 out << indent << "CRC (modversions) changed from "
1160 out << crc1.value();
1162 out << none;
1163 out << " to ";
1165 out << crc2.value();
1167 out << none;
1168 out << std::noshowbase << std::dec
1177 out << indent << "namespace changed from ";
1179 out << "'" << ns1.value() << "'";
1181 out << none;
1182 out << " to ";
1184 out << "'" << ns2.value() << "'";
1186 out << none;
1187 out << "\n";
1194 /// @param out the output string to emit the resulting string to.
1204 show_linkage_name_and_aliases(ostream& out,
1209 out << indent << symbol.get_id_string();
1214 out << ", aliases " << aliases;
1229 /// @param out the output stream to emit the report to.
1234 ostream& out)
1248 out << indent
1251 out << indent
1267 out << indent << " [D] '" << get_pretty_representation(*i) << "'";
1268 report_loc_info(*i, *ctxt, out);
1269 out << "\n";
1273 out << "\n";
1277 out << indent
1280 out << indent
1297 out << indent << " [C] '" << repr << "' changed:\n";
1298 diff->report(out, indent + " ");
1300 out << "\n";
1306 out << indent
1309 out << indent
1325 out << indent << " [A] '" << get_pretty_representation(*i) << "'";
1326 report_loc_info(*i, *ctxt, out);
1327 out << "\n";
1331 out << "\n";
1339 /// @param out the output stream to report to.
1344 ostream &out,
1369 out << indent << "one impacted interface:\n";
1371 out << indent << num_impacted_interfaces << " impacted interfaces:\n";
1379 out << cur_indent << get_pretty_representation(*it) << "\n";
1388 /// @param out the output stream to report to.
1393 ostream &out,
1395 {return maybe_report_interfaces_impacted_by_diff(d.get(), out, indent);}
1412 /// @param out the output stream to emit the change report to.
1417 ostream &out,
1451 out << indent << "data member";
1453 out << "s";
1463 out << ",";
1464 out << " '" << name << "'";
1469 out << " were ";
1471 out << " was ";
1473 out << "replaced by anonymous data member:\n"
1486 /// @param out the output stream to report the change to.
1491 ostream &out,
1503 out << indent << "base classes of '"
1512 out << " to: ";
1513 out << "'";
1518 out << ", ";
1520 out << "virtual ";
1521 out << b->get_base_class()->get_qualified_name();
1524 out << "'";
1528 out << "\n";