Lines Matching defs:other
11 * documentation and/or other materials provided with the distribution;
118 operator=(const Time &other)
120 sec(other.sec());
121 nsec(other.nsec());
171 operator+=(const Time &other)
174 _time.tv_sec += other.sec();
175 _time.tv_nsec += other.nsec();
185 operator-=(const Time &other)
187 _time.tv_sec -= other.sec();
188 _time.tv_nsec -= other.nsec();