Searched refs:field_bytes_ (Results 1 – 2 of 2) sorted by relevance
141 (field_bytes_ == other.field_bytes_); in operator ==()201 static_assert(sizeof(field_bytes_) == sizeof(proto.field_bytes()), in FromProto()203 field_bytes_ = static_cast<decltype(field_bytes_)>(proto.field_bytes()); in FromProto()276 static_assert(sizeof(field_bytes_) == sizeof(proto->field_bytes()), in ToProto()279 static_cast<decltype(proto->field_bytes())>(field_bytes_)); in ToProto()
106 const std::string& field_bytes() const { return field_bytes_; } in field_bytes()107 void set_field_bytes(const std::string& value) { field_bytes_ = value; } in set_field_bytes()109 field_bytes_.assign(reinterpret_cast<const char*>(p), s); in set_field_bytes()126 std::string field_bytes_ = {}; variable