Searched defs:Offset (Results 1 – 1 of 1) sorted by relevance
80 template<typename T> struct Offset { struct82 Offset() : o(0) {} in Offset() argument83 Offset(uoffset_t _o) : o(_o) {} // NOLINT(google-explicit-constructor) in Offset() argument84 Offset<void> Union() const { return Offset<void>(o); } in Union() argument85 bool IsNull() const { return !o; } in IsNull()