Searched defs:Vector (Results 1 - 4 of 4) sorted by relevance

/system/nvram/messages/include/nvram/messages/
H A Dvector.h36 template <typename ElementType> class Vector { class in namespace:nvram
38 Vector() = default;
39 ~Vector() {
49 // Vector is not copyable as this would require memory allocations that may
50 // fail. However, Vector supports move semantics.
51 Vector(const Vector<ElementType>& other) = delete;
52 Vector<ElementType>& operator=(const Vector<ElementType>& other) = delete;
53 Vector(Vecto function in class:nvram::Vector
[all...]
/system/core/include/utils/
H A DVector.h55 class Vector : private VectorImpl class in namespace:android
64 Vector();
65 Vector(const Vector<TYPE>& rhs);
66 explicit Vector(const SortedVector<TYPE>& rhs);
67 virtual ~Vector();
70 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
71 Vector<TYPE>& operator = (const Vector<TYP
227 Vector<TYPE>::Vector() function in class:android::Vector
237 Vector<TYPE>::Vector(const Vector<TYPE>& rhs) function in class:android::Vector
242 Vector<TYPE>::Vector(const SortedVector<TYPE>& rhs) function in class:android::Vector
[all...]
/system/core/libutils/include/utils/
H A DVector.h55 class Vector : private VectorImpl class in namespace:android
64 Vector();
65 Vector(const Vector<TYPE>& rhs);
66 explicit Vector(const SortedVector<TYPE>& rhs);
67 virtual ~Vector();
70 const Vector<TYPE>& operator = (const Vector<TYPE>& rhs) const;
71 Vector<TYPE>& operator = (const Vector<TYP
227 Vector<TYPE>::Vector() function in class:android::Vector
237 Vector<TYPE>::Vector(const Vector<TYPE>& rhs) function in class:android::Vector
242 Vector<TYPE>::Vector(const SortedVector<TYPE>& rhs) function in class:android::Vector
[all...]
/system/chre/external/flatbuffers/include/flatbuffers/
H A Dflatbuffers.h280 // An STL compatible iterator implementation for Vector below, effectively
371 // Vector::data() assumes the vector elements start after the length field.
372 template<typename T> class Vector { class in namespace:flatbuffers
394 // If this is a Vector of enums, T will be its storage type, not the enum
463 Vector();
499 template<typename T> static inline size_t VectorLength(const Vector<T> *v) {
504 struct String : public Vector<char> {
879 // If you hit this, you're trying to construct a Table/Vector/String
1111 template<typename T> Offset<Vector<T>> CreateVector(const T *v, size_t len) {
1116 return Offset<Vector<
[all...]

Completed in 191 milliseconds