Lines Matching defs:other
167 SkTOptionalTestPayload(const SkTOptionalTestPayload& other)
169 , fPayload(other.fPayload) {}
171 SkTOptionalTestPayload(SkTOptionalTestPayload&& other)
173 , fPayload(other.fPayload) {
174 other.fState = kMovedFrom;
177 SkTOptionalTestPayload& operator=(const SkTOptionalTestPayload& other) {
179 fPayload = other.fPayload;
183 SkTOptionalTestPayload& operator=(SkTOptionalTestPayload&& other) {
185 fPayload = other.fPayload;
186 other.fState = kMovedFrom;