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

  /external/flatbuffers/include/flatbuffers/
flatbuffers.h 89 struct VectorIterator {
96 VectorIterator(const uint8_t *data, uoffset_t i) :
98 VectorIterator(const VectorIterator &other) : data_(other.data_) {}
100 VectorIterator &operator=(const VectorIterator &other) {
105 VectorIterator &operator=(VectorIterator &&other) {
110 bool operator==(const VectorIterator &other) const {
114 bool operator<(const VectorIterator &other) const
    [all...]
  /libnativehelper/platform_include/nativehelper/detail/
signature_checker.h 188 struct VectorIterator {
191 constexpr VectorIterator& operator++() {
196 constexpr VectorIterator operator++(int) const {
197 VectorIterator tmp(*this);
211 constexpr bool operator==(const VectorIterator& other) const {
215 constexpr bool operator!=(const VectorIterator& other) const {
228 using iterator = VectorIterator<MaybeElement>;
229 using const_iterator = VectorIterator<const MaybeElement>;
    [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 196 milliseconds