Lines Matching refs:elem
211 int find(const T& elem) const {
216 if (*iter == elem) {
223 int rfind(const T& elem) const {
228 if (*--iter == elem) {
238 bool contains(const T& elem) const {
239 return (this->find(elem) >= 0);
263 void push(const T& elem) { *this->append() = elem; }
266 void pop(T* elem) { if (elem) *elem = (*this)[fCount - 1]; --fCount; }