Home | History | Annotate | Download | only in private

Lines Matching refs:elem

239     int find(const T& elem) const {
244 if (*iter == elem) {
251 int rfind(const T& elem) const {
256 if (*--iter == elem) {
266 bool contains(const T& elem) const {
267 return (this->find(elem) >= 0);
291 void push(const T& elem) { *this->append() = elem; }
294 void pop(T* elem) { SkASSERT(fCount > 0); if (elem) *elem = (*this)[fCount - 1]; --fCount; }