Lines Matching full:operator
27 // Prefix operator!
28 WebRtc_Word32 operator++();
29 WebRtc_Word32 operator--();
31 Atomic32Wrapper& operator=(const Atomic32Wrapper& rhs);
32 Atomic32Wrapper& operator=(WebRtc_Word32 rhs);
34 WebRtc_Word32 operator+=(WebRtc_Word32 rhs);
35 WebRtc_Word32 operator-=(WebRtc_Word32 rhs);
42 // Disable the + and - operator since it's unclear what these operations
44 Atomic32Wrapper operator+(const Atomic32Wrapper& rhs);
45 Atomic32Wrapper operator-(const Atomic32Wrapper& rhs);
47 WebRtc_Word32& operator++(int);
48 WebRtc_Word32& operator--(int);