Lines Matching defs:index
32 * Return the size of the index'th entry in the table. The caller must
33 * ensure that index is valid for this table.
35 size_t atSize(int index) const;
38 * Return a pointer to the data of the index'th entry in the table.
39 * The caller must ensure that index is valid for this table.
42 * will be the same value that atSize(index) would return.
44 const void* at(int index, size_t* size = nullptr) const;
47 const T* atT(int index, size_t* size = nullptr) const {
48 return reinterpret_cast<const T*>(this->at(index, size));
52 * Returns the index'th entry as a c-string, and assumes that the trailing
55 const char* atStr(int index) const {
57 const char* str = this->atT<const char>(index, &size);