Lines Matching refs:vec
780 * \param vec the vector to copy.
782 vector(const vector<T, N>& vec) :
783 size_(vec.size_)
786 assign(vec.begin(), vec.end());
828 * \param vec the vector against which to compare.
830 bool operator==(vector<T,N> &vec)
832 if (size() != vec.size()) {
837 if( operator[](i) != vec[i] ) {
945 iterator (const vector<T,N> &vec, int index) :
946 vec_(&vec)
948 if( !vec.empty() ) {
970 static iterator begin(const cl::vector<T,N> &vec)
972 iterator i(vec, 0);
977 static iterator end(const cl::vector<T,N> &vec)
979 iterator i(vec, vec.size());