Lines Matching refs:change
65 /// Emit a message showing the numerical change between two values, to
77 /// change in bits or bytes. XXX is the string content of the @p what
80 /// @param what the string that tells us what the change represents.
85 /// @param new_bits the final value (resulting from the change or @p
90 /// @param out the output stream to send the change message to.
230 /// @param indent the indentation string to use for the change report.
260 /// If a given @ref var_diff node carries a data member change in
262 /// string (to an output stream) that represents that offset change.
273 /// change.
293 uint64_t change = 0;
297 change = second_offset - first_offset;
302 change = first_offset - second_offset;
308 change = convert_bits_to_bytes(change);
315 emit_num_value(change, ctxt, out);
321 /// stream) that represents that size change.
332 /// change.
352 uint64_t change = 0;
356 change = second_size - first_size;
361 change = first_size - second_size;
367 change = convert_bits_to_bytes(change);
374 emit_num_value(change, ctxt, out);
389 /// @param indent the indentation string to use for the change report.
421 // Have we reported a size change already?
425 // First we'll try to emit a report about the type change of this
428 // In the context of that type change report, we need to keep in
433 // Then, as a fallback method, we'll emit a more generic type change
479 // So we are looking at a non-anonymous data member change from
495 // If we haven't succeeded in emitting a specific type change report
497 // try to emit a more generic report about the type change.
723 /// @param out the output stream to report the change to.
746 // report a size change.
841 /// @param out the output stream to report the change to.
884 /// @param out the output stream to report the change to.
901 // This is a harmless name change. but then
920 /// insertion/deletion/change of a part of a class. This is a
930 /// @param k the kind of diff (insertion/deletion/change) we want the
947 string change;
953 change = (number > 1) ? "deletions" : "deletion";
956 change = (number > 1) ? "insertions" : "insertion";
960 change = (number > 1) ? "changes" : "change";
966 out << indent << "no " << section_name << " " << change;
970 out << indent << "1 " << section_name << " " << change;
973 << " " << change;
981 /// insertion/deletion/change of a part of a class. This is a
986 /// @param k the kind of diff (insertion/deletion/change) we want the
1000 string change;
1005 change = "deletions";
1008 change = "insertions";
1012 change = "changes";
1016 out << indent << "there are " << section_name << " " << change << ":\n";
1412 /// @param out the output stream to emit the change report to.
1486 /// @param out the output stream to report the change to.