Lines Matching defs:from
39 // spanning from and including 'from', to but not including 'to'.
40 Vector<T> SubVector(size_t from, size_t to) const {
41 DCHECK_LE(from, to);
43 return Vector<T>(begin() + from, to - from);
115 // Implicit conversion from Vector<T> to Vector<const T>.
162 // Implicit conversion from {OwnedVector<U>} to {OwnedVector<T>}, instantiable
198 // Releases the backing data from this vector and transfers ownership to the
285 // Construct a Vector from a start pointer and a size.
291 // Construct a Vector from anything providing a {data()} and {size()} accessor.
298 // Construct a Vector from an initializer list. The vector can obviously only be