HomeSort by relevance Sort by last modified time
    Searched defs:VectorIterator (Results 1 - 2 of 2) sorted by null

  /external/flatbuffers/include/flatbuffers/
flatbuffers.h 254 struct VectorIterator
260 VectorIterator(const uint8_t *data, uoffset_t i) :
262 VectorIterator(const VectorIterator &other) : data_(other.data_) {}
264 VectorIterator(VectorIterator &&other) : data_(std::move(other.data_)) {}
267 VectorIterator &operator=(const VectorIterator &other) {
272 VectorIterator &operator=(VectorIterator &&other)
    [all...]
  /system/chre/external/flatbuffers/include/flatbuffers/
flatbuffers.h 284 struct VectorIterator
290 VectorIterator(const uint8_t *data, uoffset_t i) :
292 VectorIterator(const VectorIterator &other) : data_(other.data_) {}
294 VectorIterator(VectorIterator &&other) : data_(std::move(other.data_)) {}
297 VectorIterator &operator=(const VectorIterator &other) {
302 VectorIterator &operator=(VectorIterator &&other)
    [all...]

Completed in 96 milliseconds