Lines Matching refs:elem
56 int find(const int32_t& elem) const;
58 int rfind(const int32_t& elem) const;
128 int find(const T& elem) const { return SkDS32Array::find((const int32_t&) elem); }
132 int rfind(const T& elem) const { return SkDS32Array::rfind((const int32_t&) elem); }
134 void push(T& elem) { *this->append() = elem; }
137 void pop(T* elem) { if (elem) *elem = (*this)[fCount - 1]; --fCount; }