Lines Matching defs:that
37 Error, // fatal error that prevents code and module file generation
42 Todo, // a feature that's not yet implemented, a fatal error
100 // as a vsnprintf() formatting string that is applied to the
103 // into char pointers that are suitable for '%s' formatting.
125 bool operator==(const MessageFormattedText &that) const {
126 return severity_ == that.severity_ && string_ == that.string_;
128 bool operator!=(const MessageFormattedText &that) const {
129 return !(*this == that);
283 bool SortBefore(const Message &that) const;
305 bool operator==(const Message &that) const;
306 bool operator!=(const Message &that) const { return !(*this == that); }
322 Messages(Messages &&that) : messages_{std::move(that.messages_)} {}
323 Messages &operator=(Messages &&that) {
324 messages_ = std::move(that.messages_);
346 void Annex(Messages &&that) {
347 messages_.splice(messages_.end(), that.messages_);
368 ContextualMessages(const ContextualMessages &that)
369 : at_{that.at_}, messages_{that.messages_} {}