Lines Matching defs:other
93 SkAutoTArray(SkAutoTArray&& other) : fArray(std::move(other.fArray)) {
94 SkDEBUGCODE(fCount = other.fCount; other.fCount = 0;)
96 SkAutoTArray& operator=(SkAutoTArray&& other) {
97 if (this != &other) {
98 fArray = std::move(other.fArray);
99 SkDEBUGCODE(fCount = other.fCount; other.fCount = 0;)
119 /** Aliases matching other types, like std::vector. */
212 /** Aliases matching other types, like std::vector. */
274 /** Aliases matching other types, like std::vector. */
351 /** Aliases matching other types, like std::vector. */