Home | History | Annotate | Download | only in core

Lines Matching refs:elem

224     int find(const T& elem) const {
229 if (*iter == elem) {
236 int rfind(const T& elem) const {
241 if (*--iter == elem) {
251 bool contains(const T& elem) const {
252 return (this->find(elem) >= 0);
276 void push(const T& elem) { *this->append() = elem; }
279 void pop(T* elem) { if (elem) *elem = (*this)[fCount - 1]; --fCount; }