Lines Matching defs:operator
63 AliasedBufferBase& operator=(AliasedBufferBase&& that) noexcept;
66 * Helper class that is returned from operator[] to support assignment into
79 inline Reference& operator=(const NativeT& val) {
84 inline Reference& operator=(const Reference& val) {
88 operator NativeT() const {
92 inline Reference& operator+=(const NativeT& val) {
98 inline Reference& operator+=(const Reference& val) {
99 return this->operator+=(static_cast<NativeT>(val));
102 inline Reference& operator-=(const NativeT& val) {
128 * through the GetValue/SetValue/operator[] methods
135 inline const NativeT* operator*() const;
150 Reference operator[](size_t index);
152 NativeT operator[](size_t index) const;