Lines Matching refs:operator

175 PROTOBUF_EXPORT Duration& operator+=(Duration& d1,
177 PROTOBUF_EXPORT Duration& operator-=(Duration& d1,
179 PROTOBUF_EXPORT Duration& operator*=(Duration& d, int64 r); // NOLINT
180 PROTOBUF_EXPORT Duration& operator*=(Duration& d, double r); // NOLINT
181 PROTOBUF_EXPORT Duration& operator/=(Duration& d, int64 r); // NOLINT
182 PROTOBUF_EXPORT Duration& operator/=(Duration& d, double r); // NOLINT
185 Duration& operator*=(Duration& d, T r) { // NOLINT
190 Duration& operator/=(Duration& d, T r) { // NOLINT
194 PROTOBUF_EXPORT Duration& operator%=(Duration& d1,
197 inline bool operator<(const Duration& d1, const Duration& d2) {
203 inline bool operator>(const Duration& d1, const Duration& d2) {
206 inline bool operator>=(const Duration& d1, const Duration& d2) {
209 inline bool operator<=(const Duration& d1, const Duration& d2) {
212 inline bool operator==(const Duration& d1, const Duration& d2) {
215 inline bool operator!=(const Duration& d1, const Duration& d2) {
219 inline Duration operator-(const Duration& d) {
225 inline Duration operator+(const Duration& d1, const Duration& d2) {
229 inline Duration operator-(const Duration& d1, const Duration& d2) {
235 inline Duration operator*(Duration d, T r) {
239 inline Duration operator*(T r, Duration d) {
243 inline Duration operator/(Duration d, T r) {
246 PROTOBUF_EXPORT int64 operator/(const Duration& d1, const Duration& d2);
248 inline Duration operator%(const Duration& d1, const Duration& d2) {
253 inline std::ostream& operator<<(std::ostream& out, const Duration& d) {
261 PROTOBUF_EXPORT Timestamp& operator+=(Timestamp& t,
263 PROTOBUF_EXPORT Timestamp& operator-=(Timestamp& t,
266 inline bool operator<(const Timestamp& t1, const Timestamp& t2) {
272 inline bool operator>(const Timestamp& t1, const Timestamp& t2) {
275 inline bool operator>=(const Timestamp& t1, const Timestamp& t2) {
278 inline bool operator<=(const Timestamp& t1, const Timestamp& t2) {
281 inline bool operator==(const Timestamp& t1, const Timestamp& t2) {
284 inline bool operator!=(const Timestamp& t1, const Timestamp& t2) {
288 inline Timestamp operator+(const Timestamp& t, const Duration& d) {
292 inline Timestamp operator+(const Duration& d, const Timestamp& t) {
296 inline Timestamp operator-(const Timestamp& t, const Duration& d) {
300 PROTOBUF_EXPORT Duration operator-(const Timestamp& t1, const Timestamp& t2);
302 inline std::ostream& operator<<(std::ostream& out, const Timestamp& t) {