Lines Matching refs:this
2 // Use of this source code is governed by a BSD-style license that can be
45 // // but not that this does not extend to the [] operator, only to the
71 if (this != &other) {
72 this->~StringAtom(); // really a no-op
73 new (this) StringAtom(other);
75 return *this;
80 if (this != &other) {
81 this->~StringAtom(); // really a no-op
82 new (this) StringAtom(std::move(other));
84 return *this;
95 // Returns true iff this is the same key.