Home | History | Annotate | Download | only in include

Lines Matching defs:vector

24 #include <utils/Vector.h>
26 using android::Vector;
85 class vector: public Vector<T>
90 return Vector<T>::editTop();
94 return Vector<T>::top();
98 Vector<T>::push(val);
102 Vector<T>::pop();
106 return Vector<T>::isEmpty();
113 #include <vector>
115 using std::vector;