Lines Matching defs:index
892 * \param index which element to access. *
894 * The caller is responsible for ensuring index is >= 0 and < size().
896 T& operator[](int index)
898 return data_[index];
903 * \param index which element to access.
906 * The caller is responsible for ensuring index is >= 0 and < size().
908 const T& operator[](int index) const
910 return data_[index];
945 iterator (const vector<T,N> &vec, int index) :
949 index_ = index;
1135 ::size_t& operator[](int index)
1137 return data_[index];
1140 const ::size_t& operator[](int index) const
1142 return data_[index];
1776 int index = 7;
1777 while(versionInfo[index] != '.' ) {
1779 highVersion += versionInfo[index]-'0';
1780 ++index;
1782 ++index;
1783 while(versionInfo[index] != ' ' && versionInfo[index] != '\0') {
1785 lowVersion += versionInfo[index]-'0';
1786 ++index;
4999 cl_int setArg(cl_uint index, const T &value)
5004 index,
5010 cl_int setArg(cl_uint index, ::size_t size, const void* argPtr)
5013 ::clSetKernelArg(object_, index, size, argPtr),
7400 template<int index, typename T0>
7405 kernel.setArg(index, arg);
7409 template<int index>
7410 struct SetArg<index, NullType>